forked from h2r/pomdp-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (73 loc) · 1.67 KB
/
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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools", "wheel", "Cython>=3.0.8"]
build-backend = "setuptools.build_meta"
[project]
name = "pomdp-py"
version = "1.3.5.1"
description = "Python POMDP Library."
authors = [{name = "Kaiyu Zheng", email = "[email protected]"}]
license = {file = "LICENSE"}
readme = "README.rst"
keywords = ["Partially Observable Markov Decision Process", "POMDP"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Cython",
"Topic :: Scientific/Engineering"
]
dependencies = [
"numpy>=1.18.0",
"scipy>=1.6.0",
"tqdm>=4.55.0"
]
# optional dependencies for examples in pomdp_problems
[project.optional-dependencies]
problems = [
"matplotlib>=3.2.0", # for some utilities
"pygame>=2.0.2", # for some tests
"opencv-python>=4.5.2.0" # for some tests
]
[project.urls]
Home = "https://github.com/h2r/pomdp-py"
[tool.ruff]
# Exclude a variety of commonly ignored directories.
exclude = [
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
"docs",
".rst",
".bib",
".html"
]
[tool.black]
line-length = 88
target-version = ["py38", "py39", "py310", "py311", "py312"]
include = "\\.(py|pyx|pxd|pyi)$"
preview = true
force-exclude = '''
/(
docs
)/
'''