From 67ebe278830d9861d33f8ab90a6b72716985d4c3 Mon Sep 17 00:00:00 2001 From: AnyaHe Date: Fri, 18 Oct 2019 12:56:21 +0200 Subject: [PATCH] update setup.py --- setup.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 100a5ae55..15e8be444 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,8 @@ BASEPATH = '.eDisGo' +def read(fname): + return open(os.path.join(os.path.dirname(__file__), fname)).read() class InstallSetup(install): def run(self): @@ -27,11 +29,13 @@ def create_edisgo_path(): packages=find_packages(), url='https://github.com/openego/eDisGo', license='GNU Affero General Public License v3.0', - author='gplssm, nesnoj, birgits, boltbeard', - author_email='', + author='gplssm, nesnoj, birgits, boltbeard, AnyaHe', + author_email='anya.heider@rl-institut.de', description='A python package for distribution grid analysis and optimization', + long_description=read('README.md'), + long_description_content_type='text/x-rst', install_requires=[ - 'demandlib', + 'demandlib', 'ding0 >= 0.1.12', 'networkx >= 2.0 ', 'shapely >= 1.5.12, <= 1.6.3',