-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (43 loc) · 1.83 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
# This file is part of pyRDDLGym-symbolic.
# pyRDDLGym-symbolic 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-symbolic 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-symbolic. 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-symbolic',
version='0.0.11',
author="Jihwan Jeong, Michael Gimelfarb, Scott Sanner",
author_email="jiihwan.jeong@gmail.com, mike.gimelfarb@mail.utoronto.ca, ssanner@mie.utoronto.ca",
description="pyRDDLGym-symbolic: Symbolic toolset for pyRDDLGym via XADD.",
license="MIT License",
packages=find_packages(),
install_requires=[
'pyRDDLGym>=2.0',
'xaddpy>=0.2.8',
'sympy>=1.12',
'symengine>=0.11.0',
],
python_requires=">=3.8",
package_data={'': ['*.cfg']},
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
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",
],
url="https://github.com/pyrddlgym-project/pyRDDLGym-symbolic",
)