-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
74 lines (71 loc) · 1.99 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
from pathlib import Path
from setuptools import find_packages, setup
long_description = Path("README.md").read_text().strip()
setup(
name="draf",
version="0.3.1",
author="Markus Fleschutz",
author_email="mfleschutz@gmail.com",
description="Demand Response Analysis Framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mfleschutz/draf",
license="LGPLv3",
packages=find_packages(exclude=["tests"]),
python_requires=">=3.6",
install_requires=[
"appdirs",
"elmada",
"geopy",
"gurobipy",
"holidays",
"matplotlib",
"numpy",
"pandas",
"pyomo>=5.7",
"ray",
"seaborn",
"tabulate",
"tqdm",
"pvlib",
"ephem",
"plotly",
"numpy_financial",
"ipywidgets",
],
extras_require={
"dev": [
"black",
"bump2version",
"isort",
"mypy",
"pytest-cov",
"pytest-mock",
"pytest-xdist",
"pytest",
],
"jupyter": ["jupyter", "jupytext"]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords=[
"energy systems",
"optimization",
"decarbonization",
"mathematical programming",
"demand response",
"energy hubs",
"distributed energy resources",
],
)