From 7f10268835aee3db6238f1d9c12071d25cf67bbc Mon Sep 17 00:00:00 2001 From: Johannes Schumann <johannes.schumann@fau.de> Date: Thu, 23 Jan 2020 20:58:57 +0100 Subject: [PATCH] Added me to the author list --- doc/conf.py | 2 +- setup.py | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 0a5580b..944303b 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 0dfb14e..7f9d245 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' -- GitLab