diff --git a/doc/conf.py b/doc/conf.py index 0a5580b13ee01e884a48e73495676abe41d48aaa..944303b9799f01688505bc4ec35766251302de95 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -26,7 +26,7 @@ release = get_distribution('km3io').version version = '.'.join(release.split('.')[:2]) project = 'km3io {}'.format(km3io.__version__) copyright = '{0}, Zineb Aly and Tamas Gal'.format(date.today().year) -author = 'Zineb Aly, Tamas Gal' +author = 'Zineb Aly, Tamas Gal, Johannes Schumann' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 0dfb14e3ca7d33a6a9674d7f755992250b39edd1..7f9d245dcbc52f66057d6f9e96a99ea1ebfced63 100644 --- a/setup.py +++ b/setup.py @@ -20,8 +20,8 @@ setup( url='http://git.km3net.de/km3py/km3io', description='KM3NeT I/O without ROOT', long_description=long_description, - author='Zineb Aly, Tamas Gal', - author_email='zaly@km3net.de, tgal@km3net.de', + author='Zineb Aly, Tamas Gal, Johannes Schumann', + author_email='zaly@km3net.de, tgal@km3net.de, johannes.schumann@fau.de', packages=['km3io'], include_package_data=True, platforms='any', @@ -33,9 +33,7 @@ setup( install_requires=requirements, python_requires='>=3.5', entry_points={ - 'console_scripts': [ - 'KPrintTree=km3io.utils.kprinttree:main' - ] + 'console_scripts': ['KPrintTree=km3io.utils.kprinttree:main'] }, classifiers=[ 'Intended Audience :: Developers', @@ -44,4 +42,4 @@ setup( ], ) -__author__ = 'Zineb Aly and Tamas Gal' +__author__ = 'Zineb Aly, Tamas Gal and Johannes Schumann'