-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (54 loc) · 1.34 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
[tool.poetry]
name = "parabellum"
version = "0.0.0"
description = "Parabellum environment for parallel warfare simulation"
authors = ["Noah Syrkis <[email protected]>"]
readme = "README.md"
repository = "https://github.com/syrkis/parabellum"
license = "MIT"
keywords = ["warfare", "simulation", "parallel", "environment"]
[tool.poetry.dependencies]
python = "^3.11,<3.12"
pygame = "^2.5.2"
moviepy = "^1.0.3"
jupyterlab = "^4.2.2"
darkdetect = "^0.8.0"
poetry = "^1.8.3"
tqdm = "^4.66.4"
jaxmarl = "0.0.3"
geopy = "^2.4.1"
osmnx = "2.0.0b0"
rasterio = "^1.3.10"
seaborn = "^0.13.2"
numpy = "<2"
ipykernel = "^6.29.5"
folium = "^0.17.0"
pandas = "^2.2.2"
contextily = "^1.6.0"
opencv-python = "^4.10.0.84"
einops = "^0.8.0"
jax = "0.4.17"
jaxtyping = "^0.2.33"
cartopy = "^0.23.0"
stadiamaps = "^3.2.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^7.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.pyright]
venvPath = "."
venv = ".venv"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=parabellum --cov-report=term-missing"
testpaths = ["test"]