forked from greco-project/pvcompare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (52 loc) · 1.98 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
49
50
51
52
53
54
55
56
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pvcompare",
version="0.0.1dev",
description="Evaluating pv technologies in net zero energy communities.",
url="https://github.com/greco-project/pvcompare",
author="Reiner Lemoine Institut",
# author_email='[email protected]',
license="MIT",
packages=["pvcompare"],
package_data={
"pvcompare": [
os.path.join("data", "load_profiles", "*.csv"),
os.path.join("data", "pv", "*.csv"),
os.path.join("perosi", "*.exe"),
os.path.join("perosi", "*.dat"),
os.path.join("perosi", "Solar", "*.dat"),
os.path.join("perosi", "Albedo", "*.dat"),
os.path.join("perosi", "data", "CHEN_2020_EQE_curve_pero_corrected.csv"),
os.path.join("perosi", "data", "CHEN_2020_EQE_curve_si_corrected.csv"),
]
},
long_description=read("README.rst"),
long_description_content_type="text/x-rst",
zip_safe=False, # todo
python_requires=">=3.5, <4",
# install_requires=[
# "pvlib",
# "demandlib",
# "feedinlib == v0.1.0rc2", # travis has problems with installment todo
# "numpy >= 1.12.0, < 1.17",
# "pandas >= 0.18.1, < 0.25",
# "oemof.thermal >= 0.0.3",
# "scipy",
# "workalendar < 7.0.0", # todo check if needed. Problems with installing skyfield in travis tests (from workalendar 7.0.0)
# "multi_vector_simulator",
# # 'greco_technologies @ git+https://github.com/greco-project/greco_technologies.git@dev#egg=greco_technologies-0',
# # 'cpvlib @ git+https://github.com/isi-ies-group/cpvlib.git@pvlib=0.8_fix#egg=cpvlib-0',
# ],
extras_require={
"dev": [
"pytest==5.3.5",
"black==19.10b0",
"coverage==5.0.3",
"coveralls==1.11.0",
"sphinx_rtd_theme",
]
},
)