forked from energyPATHWAYS/EnergyPATHWAYS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 1.02 KB
/
setup.py
File metadata and controls
29 lines (28 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import find_packages, setup
setup(name='energyPATHWAYS',
version='0.2',
description='Software package for long-term energy system modeling',
url='https://github.com/energyPATHWAYS/energyPATHWAYS',
author='Ben Haley, Ryan Jones, Michael Cohen, Gabe Kwok, Ana Mileva',
packages=find_packages(),
install_requires=['pandas',
'numpy',
'scipy',
'pint',
'pyomo',
'datetime',
'pytz',
'profilehooks',
'psycopg2',
'matplotlib', # util.py
'scikit-learn', # dispatch_classes.py
'click'
],
extras_require={'documentation': ["Sphinx"],
},
include_package_data=True,
entry_points='''
[console_scripts]
energyPATHWAYS=energyPATHWAYS.run:click_run
''',
)