-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (70 loc) · 1.96 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
[tool.poetry]
name = "run-time-assurance"
version = "1.16.2"
description = "The run-time-assurance library provides an interface and implementations for Run Time Assurance (RTA) safety filters."
authors = [
"Charles Keating <[email protected]>",
]
license = ""
readme = "README.md"
homepage = "https://github.com/act3-ace/run-time-assurance.git"
repository = "https://github.com/act3-ace/run-time-assurance.git"
documentation = "https://github.com/act3-ace/run-time-assurance/docs"
keywords = []
include = ["docs/*"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
packages = [
{include = "run_time_assurance"},
]
[tool.poetry.dependencies]
python = ">=3.9, <3.13"
scipy = ">=1.10.0"
jax = { version = "0.4.26", extras = ["cpu"] }
numpy = "^1.23.5"
matplotlib = "^3.8.0"
quadprog = "^0.1.11"
pydantic = "^2.8.0"
safe-autonomy-simulation = "^2.0.12"
pyqt6 = "^6.7.1"
[tool.poetry.group.lint.dependencies]
pylint = "2.15.4"
flake8 = "3.9.2"
yapf = "^0.40.0"
mypy = "0.930"
isort = "5.9.3"
bashate = "^2.1.0"
velin = "^0.0.11"
blacken-docs = "^1.12.1"
detect-secrets = "1.1.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.1.2"
pytest-cov = "2.11.1"
pyinstrument = "^4.3.0"
twine = "^5.1.1"
coverage-badge = "^1.1.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.3.1"
mkdocs-git-revision-date-localized-plugin = "^1.1.0"
mkdocs-material = "^8.4.2"
mkdocs-material-extensions = "^1.0.3"
mkdocs-mermaid-plugin = "^0.1.1"
mkdocs-pdf-export-plugin = "^0.5.10"
mkdocstrings = "0.18.0"
mkdocs-autorefs = "^0.5.0"
mkdocs-coverage = "^0.2.5"
mkdocs-gen-files = "^0.5.0"
mkdocs-section-index = "^0.3.4"
mkdocs-with-pdf = "^0.9.3"
papermill = "^2.4.0"
Pillow = "^9.2.0"
pymdown-extensions = "^9.5"
pytkdocs = { version = ">=0.5.0", extras = ["numpy-style"] }
mkdocstrings-python-legacy = "^0.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"