-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 979 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
35
from setuptools import setup, find_packages
setup(
name='eplus_drl',
version='0.1.0',
packages=find_packages(),
install_requires=[
'contourpy>=1.2.1',
'cycler==0.12.1',
'fonttools==4.51.0',
'kiwisolver==1.4.5',
'matplotlib>=3.8.4',
'numpy>=1.22',
'packaging<=24.0',
'pandas>=2.2.1',
'pillow>=10.3.0',
'pyparsing==3.1.2',
'python-dateutil==2.9.0.post0',
'pytz<=2024.1',
'six==1.16.0',
'tzdata==2024.1',
'absl-py>=1.4.0',
'neuromancer>=1.5.0',
],
author='Sebastian Cubides',
author_email='sebscubs@gmail.com',
description='Deep Reinforcement Learning for EnergyPlus',
url='https://github.com/SebsCubs/energy-plus-DRL',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: Linux',
],
python_requires='==3.10.4',
)