Skip to content

Commit

Permalink
add new ENCORE maintainers
Browse files Browse the repository at this point in the history
- part of #47
- add new maintainers in pyproject.toml
- updated author list in pyproject.toml: explicitly list the original
  ENCORE authors and Ian (for his work in porting mdaencore), list everyone
  else implicitly as "mdaencore AUTHORS"
- changed maintainer to @enoee
- updated author in setup.py to be the maintainer + AUTHORs but uses
  @enoee s email; as far as I can tell, the PyPi page will use the better
  metadata from pyproject.toml so it should be fine
  • Loading branch information
orbeckst committed Nov 3, 2023
1 parent ce16a18 commit 9a3881f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
15 changes: 10 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,15 @@ name = "mdaencore"
description = "Ensemble overlap comparison software for molecular data."
license = {file = "LICENSE" }
authors = [
{name = "MDAnalysis", email = "mdanalysis@numfocus.org"},
{name = "Matteo Tiberti", email = "tiberti@cancer.dk"},
{name = "Wouter Boomsma", email = "wb@di.ku.dk"},
{name = "Tone Bengtsen", email = "tonebengsten@gmail.com"},
{name = "Ian M. Kenney", email = "ikenney@asu.edu"},
{name = "mdaencore AUTHORS"},
]
maintainers = [
{name = "MDAnalysis", email = "mdanalysis@numfocus.org"},
{name = "Kristoffer Enøe Johansson", email = "kristoffer.johansson@bio.ku.dk"},
{name = "Kresten Lindorff-Larsen", email = "lindorff@bio.ku.dk"},
]
readme = "README.md"
requires-python = ">=3.9"
Expand All @@ -40,9 +45,9 @@ doc = [
"mdanalysis_sphinx_theme",
]

# [project.urls]
# source = "https://github.com/MDAnalysis/mdaencore"
# documentation = "https://mdaencore.readthedocs.io"
[project.urls]
source = "https://github.com/MDAnalysis/mdaencore"
documentation = "https://www.mdanalysis.org/mdaencore/"

[tool.pytest.ini_options]
minversion = "6.0"
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""
mdaencore
Ensemble overlap comparison software for molecular data.
Expand Down Expand Up @@ -99,8 +100,8 @@ def extensions(debug=False, use_cython=True):
setup(
# Self-descriptive entries which should always be present
name='mdaencore',
author='MDAnalysis',
author_email='mdanalysis@numfocus.org',
author='Kristoffer Enøe Johansson and AUTHORS',
author_email='kristoffer.johansson@bio.ku.dk',
description=short_description,
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 9a3881f

Please sign in to comment.