-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (59 loc) · 1.72 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
[tool.poetry]
name = "safe-autonomy-simulation"
version = "2.1.4"
description = "A library for building continuous simulation environments, designed to support safe autonomy research."
authors = [
"james.cunningham <[email protected]>",
]
license = "Distribution C"
readme = "README.md"
homepage = "https://github.com/act3-ace/safe-autonomy-simulation.git"
repository = "https://github.com/act3-ace/safe-autonomy-simulation.git"
documentation = 'https://github.com/act3-ace/safe-autonomy-simulation'
keywords = []
include = ["docs/*"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
packages = [{ include = "safe_autonomy_simulation" }]
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.23.5"
pint = "^0.23"
scipy = "^1.13.0"
scikit-learn = "^1.5.0"
typing-extensions = "^4.12.2"
jax = {extras = ["cpu"], version = "^0.4.30"}
diffrax = {version = "^0.6.0"}
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^8.0.0"
pytest-cov = "4.1.0"
pyinstrument = "^4.3.0"
pytest-mock = "^3.14.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.0"
mkdocstrings = {extras = ["python"], version = "^0.25.1"}
mkdocs-material = "^9.5.27"
mkdocs-gen-files = "^0.5.0"
mkdocs-autorefs = "^1.0.1"
mkdocs-section-index = "^0.3.9"
[tool.poetry.group.pipeline]
optional = true
[tool.poetry.group.pipeline.dependencies]
twine = "^5.0.0"
coverage-badge = "^1.1.0"
[tool.poetry.group.lint.dependencies]
black = "^24.4.2"
mypy = "^1.10.1"
ruff = "^0.4.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.mypy.overrides]]
module = "scipy"
ignore_missing_imports = true