forked from NVlabs/alpasim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (51 loc) · 1.55 KB
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
[build-system]
requires = [ "setuptools>=61.0" ]
build-backend = "setuptools.build_meta"
# Trivial comment to trigger CI build-services (for test-slurm dependency).
[project]
name = "alpasim-runtime"
version = "1.136.0"
description = "Runtime of the Alpamayo Sim"
requires-python = ">=3.11,<3.13"
authors = [{name = "Michal Tyszkiewicz", email = "mtyszkiewicz@nvidia.com"}]
dependencies = [
"aiofiles>=24.1.0",
"alpasim-eval", # Local eval package
"alpasim-grpc", # Local grpc package
"alpasim-utils[geometry]", # Local utils package + Rust geometry types
"matplotlib>=3.8.0", # Metrics plotting
"mergedeep>=1.3.4",
"numpy>=2.0.0",
"omegaconf>=2.3.0",
"polars>=1.0.0", # Metrics data processing
"pyarrow>=15.0.0", # Required for polars to_pandas() conversion
"prometheus-client>=0.21.0",
"protobuf>=4.25.3",
"pyyaml>=6.0.2",
"rich>=13.0.0",
"scipy>=1.15.0",
"csaps>=1.2.0",
"trajdata-alpasim",
"pandas<3", # pandas 3.x breaks trajdata
"pytest>=7.0.0",
"pytest-asyncio>=0.20.0",
"mypy>=1.0.0",
"types-protobuf",
"types-aiofiles",
"grpcio>=1.70.0",
"pytest-grpc>=0.8.0",
"pyyaml>=6.0.2",
]
[tool.uv.sources]
alpasim-eval = {workspace = true}
alpasim-grpc = {workspace = true}
alpasim-utils = {workspace = true}
[tool.setuptools.packages.find]
include = [ "alpasim_runtime", "tests" ]
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"manual: marks tests as manual execution only",
]
# To run manual tests, run: `pytest -m 'manual'`
addopts = "-m 'not manual'"