-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (49 loc) · 2.05 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
# 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
from pathlib import Path
long_description = (Path(__file__).parent / "README.md").read_text()
setup(
name='pyRDDLGym-jax',
version='1.0',
author="Michael Gimelfarb, Ayal Taitler, Scott Sanner",
description="pyRDDLGym-jax: automatic differentiation for solving sequential planning problems in JAX.",
long_description=long_description,
long_description_content_type='text/markdown',
license="MIT License",
url="https://github.com/pyrddlgym-project/pyRDDLGym-jax",
packages=find_packages(),
install_requires=[
'pyRDDLGym>=2.0',
'tqdm>=4.66',
'jax>=0.4.12',
'optax>=0.1.9',
'dm-haiku>=0.0.10',
'tensorflow-probability>=0.21.0'
],
extras_require={
'extra': ['bayesian-optimization>=2.0.0', 'rddlrepository>=2.0'],
'dashboard': ['dash>=2.18.0', 'dash-bootstrap-components>=1.6.0']
},
python_requires=">=3.9",
package_data={'': ['*.cfg']},
include_package_data=True,
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",
],
)