forked from ugr-sail/sinergym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
77 lines (73 loc) · 2.7 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
75
76
77
import os
from setuptools import find_packages, setup
with open(os.path.join("sinergym", "version.txt"), "r") as file_handler:
__version__ = file_handler.read().strip()
with open('requirements.txt') as f:
reqs = f.read().splitlines()
setup(name='sinergym',
version=__version__,
packages=[package for package in find_packages(
) if package.startswith("sinergym")],
license='MIT',
author='J. Jiménez, J. Gómez, M. Molina, A. Manjavacas, A. Campoy',
author_email='alejandroac79@gmail.com',
description='The goal of sinergym is to create an environment following OpenAI Gym interface for wrapping simulation engines for building control using deep reinforcement learning.',
url='https://github.com/ugr-sail/sinergym',
keywords='control reinforcement-learning buildings reinforcement-learning-environments',
install_requires=reqs,
include_package_data=True,
extras_require={
'extras': [
'matplotlib', # visualization
# DRL with pytorch
'stable-baselines3',
'wandb',
'pytest',
'pytest-cov',
'pytest-xdist', # Unit test repository
'sphinx', # documentation
'sphinx-rtd-theme', # documentation theme
'sphinxcontrib-spelling', # documentation spelling
# documentation versioning
'sphinx-multiversion @ git+https://github.com/Holzhaus/sphinx-multiversion#egg=sphinx-multiversion',
'sphinx-multitoc-numbering', # Section numbering
'pyenchant',
'nbsphinx',
'nbsphinx_link',
'google-api-python-client==2.58.0',
'oauth2client==4.1.3',
'google-cloud-storage==2.5.0',
'IPython'
],
'test': [
'pytest',
'pytest-cov',
'pytest-xdist',
'stable-baselines3',
'wandb'
],
'DRL': [
'stable-baselines3',
'wandb'
],
'doc': [
'sphinx',
'sphinx-rtd-theme',
'sphinxcontrib-spelling',
'sphinx-multiversion @ git+https://github.com/Holzhaus/sphinx-multiversion#egg=sphinx-multiversion',
'sphinx-multitoc-numbering',
'pyenchant',
'nbsphinx',
'nbsphinx_link',
'IPython'
],
'visualization': [
'matplotlib',
],
'gcloud': [
'google-api-python-client==2.58.0',
'oauth2client==4.1.3',
'google-cloud-storage==2.5.0',
]
}
)