From 1f84ad403ee85008908d5ec3243c8d9f4c1be95e Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Fri, 15 Nov 2019 23:33:44 +0100 Subject: [PATCH] Fix authors --- doc/conf.py | 8 ++++++-- doc/index.rst | 4 ++++ setup.py | 6 +++--- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 9a2d388..02ac674 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -18,8 +18,8 @@ # -- Project information ----------------------------------------------------- project = 'km3io' -copyright = '2019, Zineb Aly, Tamas Gal, Johannes Schumann' -author = 'Zineb Aly, Tamas Gal, Johannes Schumann' +copyright = '2019, Zineb Aly and Tamas Gal' +author = 'Zineb Aly, Tamas Gal' # -- General configuration --------------------------------------------------- @@ -43,6 +43,10 @@ templates_path = ['_templates'] # This pattern also affects html_static_path and html_extra_path. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] +# AutoAPI +autoapi_type = 'python' +autoapi_dirs = ['../km3io'] + # -- Options for HTML output ------------------------------------------------- diff --git a/doc/index.rst b/doc/index.rst index b7cea47..4a61905 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -10,6 +10,10 @@ :maxdepth: 2 :caption: Contents: + autoapi/index + autoapi/km3io/aanet/index + autoapi/km3io/jpp/index + Indices and tables diff --git a/setup.py b/setup.py index 87e6250..774da59 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,8 @@ setup( url='http://git.km3net.de/km3py/km3io', description='KM3NeT I/O without ROOT', long_description=long_description, - author='Zineb Aly, Tamas Gal, Johannes Schumann', - author_email='zaly@km3net.de, jschumann@km3net.de, tgal@km3net.de', + author='Zineb Aly, Tamas Gal', + author_email='zaly@km3net.de, tgal@km3net.de', packages=['km3io'], include_package_data=True, platforms='any', @@ -40,4 +40,4 @@ setup( ], ) -__author__ = 'Zineb Aly, Tamas Gal and Johannes Schumann' +__author__ = 'Zineb Aly and Tamas Gal' -- GitLab