-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 800 Bytes
/
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
from setuptools import find_packages, setup
requirements = [
"wandb",
"gymnasium",
"torch",
"tensorboard",
"sinergym==2.3.2",
"stable_baselines3"
]
setup(
name="ehcs",
licence="MIT",
version="0.1",
url="https://github.com/kad99kev/EHCSTLDRL",
author="Kevlyn Kadamala",
author_email="k.kadamala1@universityofgalway.ie",
description="Source code for 'Enhancing HVAC Control Systems through Transfer Learning with Deep Reinforcement Learning Agents'.",
packages=find_packages(),
install_requires=requirements,
extras_require={
"dev": [
"black",
"pylance",
"isort==5.10.1",
]
},
entry_points={
"console_scripts": [
"ehcs = ehcs.cli:cli",
],
},
)