diff --git a/pyproject.toml b/pyproject.toml index 9d3eced..b84a15b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + [build-system] requires = [ "setuptools >= 40.9.0", @@ -12,10 +14,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" @@ -40,9 +47,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" diff --git a/setup.py b/setup.py index 4b97bc1..7e91004 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- """ mdaencore Ensemble overlap comparison software for molecular data. @@ -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",