-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
46 lines (43 loc) · 1.55 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
from setuptools import find_packages, setup
exec(open("ramp/_version.py").read())
setup(
name="rampdemand",
description="An open-source python package for building bottom-up stochastic model for generating multi-energy load profiles",
long_description=open("README.rst", encoding="utf8").read(),
long_description_content_type="text/x-rst",
author_email="[email protected]",
url="https://github.com/RAMP-project/RAMP",
version=__version__,
packages=find_packages(),
license="European Union Public License 1.2",
python_requires="<3.12",
package_data={"": ["*.txt", "*.dat", "*.doc", "*.rst", "*.xlsx", "*.csv"]},
install_requires=[
"pandas >= 1.3.3",
"numpy >= 1.21.2",
"xlsxwriter >= 1.3.7",
"matplotlib >= 3.3.4",
"openpyxl >= 3.0.6",
"tqdm",
"plotly",
"multiprocess",
],
# classifiers=[
# "Programming Language :: Python :: 3.7",
# "Programming Language :: Python :: 3.8",
# "Programming Language :: Python :: 3.9",
# "Intended Audience :: End Users/Desktop",
# "Intended Audience :: Developers",
# "Intended Audience :: Science/Research",
# "Operating System :: MacOS :: MacOS X",
# "Operating System :: Microsoft :: Windows",
# "Programming Language :: Python",
# "Topic :: Scientific/Engineering",
# ],
entry_points={
"console_scripts": [
"ramp=ramp.cli:main",
"ramp_convert=ramp.ramp_convert_old_input_files:cli",
],
},
)