forked from tobirohrer/building-energy-storage-simulation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.25 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
from distutils.core import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(name='building_energy_storage_simulation',
version='0.9.3',
description='A simulation of a building to optimize energy storage utilization.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Tobias Rohrer',
author_email='[email protected]',
url="https://github.com/tobirohrer/building-energy-storage-simulation",
packages=['building_energy_storage_simulation'],
package_dir={'building_energy_storage_simulation': 'building_energy_storage_simulation'},
# Required to include profiles which are stored as .csv files
package_data={
"building_energy_storage_simulation": [
"data/preprocessed/*.csv",
]
},
include_package_data=True,
install_requires=[
"gymnasium",
"pandas",
"numpy"
],
extras_require={
"dev": [
"sphinx",
"pytest",
"mypy",
"pandas-stubs",
"types-setuptools",
"ruff"
]
}
)