-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
33 lines (32 loc) · 1023 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyRDDLGym_symbolic"
version = "0.0.11"
authors = [
{ name="Jihwan Jeong", email="jiihwan.jeong@gmail.com" },
]
license = {file = "LICENSE"}
keywords = ["pyRDDLGym", "Symbolic Dynamic Programming", "RDDL", "Dynamic Bayes Net"]
description = "pyRDDLGym-symbolic: Symbolic toolset for pyRDDLGym via XADD."
readme = "README.md"
requires-python = ">=3.8"
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",
]
dependencies = [
"symengine>=0.11.0",
"pyRDDLGym>=2.0",
"xaddpy>=0.2.8",
"sympy>=1.12",
]
[project.urls]
"Homepage" = "https://github.com/jihwan-jeong/xaddpy"
"Bug Tracker" = "https://github.com/jihwan-jeong/xaddpy/issues"