-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
48 lines (46 loc) · 1.3 KB
/
setup.py
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import setuptools
from setuptools import setup
setup(
name='two_stage_SP',
version='0.1.0',
description='A example Python package',
url='https://github.com/zahraghh/Two_Stage_SP',
author='Zahra Ghaemi',
author_email='zahra.ghaemi8@gmail.com',
license='MIT License',
packages=setuptools.find_packages(),
install_requires=['certifi==2020.12.5',
'chardet==4.0.0',
'cycler==0.10.0',
'idna==2.10',
'kiwisolver==1.3.1',
'matplotlib==3.4.1',
'nested-dict==1.61',
'nose==1.3.7',
'NREL-PySAM==2.2.2',
'NREL-PySAM-stubs==2.2.2',
'numpy==1.20.2',
'pandas==1.2.3',
'Pillow==8.2.0',
'Platypus-Opt==1.0.4',
'plotly==4.14.3',
'ply==3.11',
'psutil==5.8.0',
'pvlib==0.8.1',
'Pyomo==5.7.3',
'pyparsing==2.4.7',
'python-dateutil==2.8.1',
'pytz==2021.1',
'PyUtilib==6.0.0',
'requests==2.25.1',
'seaborn==0.11.1',
'six==1.15.0',
'sklearn==0.0',
'statsmodels==0.12.2',
'urllib3==1.26.4',
'wincertstore==0.2'],
classifiers=[
'Operating System :: POSIX :: Windows',
'Programming Language :: Python :: 3.7.7',
],
)