forked from RWTH-EBC/AgentLib-FlexQuant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.03 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (33 loc) · 1.03 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
30
31
32
33
34
35
36
import setuptools
requirements = [
"agentlib[full] @ git+https://github.com/RWTH-EBC/AgentLib.git@27af08d",
"agentlib_mpc[fmu, interactive] @ git+https://github.com/RWTH-EBC/AgentLib-MPC.git@be75092",
"pycombina @ git+https://github.com/adbuerger/pycombina.git",
"pathlib",
"astor==0.8.1",
"black",
"pre-commit",
# Building the docs
"sphinx>=6.1.3",
"m2r2",
"myst-parser",
"autodoc_pydantic>=1.8.0",
"sphinx-material",
]
setuptools.setup(
name="agentlib_flexquant",
version="0.1.0",
author="",
author_email="",
description="Flexibility quantification setup based on agentlib_mpc",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
],
install_requires=requirements
)