Skip to content

Commit f64d30b

Browse files
authored
Merge pull request #164 from openego/dev
update setup.py
2 parents 9532ff0 + 67ebe27 commit f64d30b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

setup.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
BASEPATH = '.eDisGo'
66

7+
def read(fname):
8+
return open(os.path.join(os.path.dirname(__file__), fname)).read()
79

810
class InstallSetup(install):
911
def run(self):
@@ -27,11 +29,13 @@ def create_edisgo_path():
2729
packages=find_packages(),
2830
url='https://github.com/openego/eDisGo',
2931
license='GNU Affero General Public License v3.0',
30-
author='gplssm, nesnoj, birgits, boltbeard',
31-
author_email='',
32+
author='gplssm, nesnoj, birgits, boltbeard, AnyaHe',
33+
author_email='anya.heider@rl-institut.de',
3234
description='A python package for distribution grid analysis and optimization',
35+
long_description=read('README.md'),
36+
long_description_content_type='text/x-rst',
3337
install_requires=[
34-
'demandlib',
38+
'demandlib',
3539
'ding0 >= 0.1.12',
3640
'networkx >= 2.0 ',
3741
'shapely >= 1.5.12, <= 1.6.3',

0 commit comments

Comments
 (0)