forked from pyrddlgym-project/pyRDDLGym
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (53 loc) · 2.74 KB
/
Copy pathsetup.py
File metadata and controls
59 lines (53 loc) · 2.74 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# This file is part of pyRDDLGym.
# pyRDDLGym is free software: you can redistribute it and/or modify
# it under the terms of the MIT License as published by
# the Free Software Foundation.
# pyRDDLGym is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# MIT License for more details.
# You should have received a copy of the MIT License
# along with pyRDDLGym. If not, see <https://opensource.org/licenses/MIT>.
from setuptools import setup, find_packages
# with open("README.md", "r", encoding="utf-8") as fh:
# long_description = fh.read()
setup(
name='pyRDDLGym',
version='1.0.5',
author="Ayal Taitler, Michael Gimelfarb, Scott Sanner, Jihwan Jeong, Sriram Gopalakrishnan, Martin Mladenov, jack liu",
author_email="ataitler@gmail.com, mike.gimelfarb@mail.utoronto.ca, ssanner@mie.utoronto.ca, jhjeong@mie.utoronto.ca, sriram.gopalakrishnan@jpmchase.com, mmladenov@google.com, xiaotian.liu@mail.utoronto.ca",
description="pyRDDLGym: RDDL automatic generation tool for OpenAI Gym",
# long_description=long_description,
license="MIT License",
url="https://github.com/ataitler/pyRDDLGym",
packages=find_packages(),
install_requires=['ply', 'pillow>=9.2.0', 'matplotlib>=3.5.0', 'numpy>=1.22', 'gym>=0.24.0', 'pygame'],
python_requires=">=3.8",
include_package_data=True,
# package_data={'': ['Examples/CartPole/Continuous/*.rddl',
# 'Examples/CartPole/Discrete/*.rddl',
# 'Examples/Elevator/*.rddl',
# 'Examples/Mars_rover/*.rddl',
# 'Examples/MountainCar/*.rddl',
# 'Examples/Power_gen/*.rddl',
# 'Examples/Racecar/*.rddl',
# 'Examples/Recsim/*.rddl',
# 'Examples/UAV/Continuous/*.rddl',
# 'Examples/UAV/Discrete/*.rddl',
# 'Examples/UAV/Mixed/*.rddl',
# 'Examples/Wildfire/*.rddl',
# 'Examples/Supply_Chain/*.rddl',
# 'Examples/Traffic/*.rddl',
# 'Examples/PropDBN/*.rddl',
# 'Examples/WildlifePreserve/*.rddl',
# ]},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)