solarcarsim/pyproject.toml

33 lines
815 B
TOML
Raw Permalink Normal View History

2024-11-26 07:10:27 +00:00
[project]
name = "solarcarsim"
version = "0.1.0"
description = "A solar car racing simulation library and GUI tool"
authors = [
{name = "saji", email = "saji@saji.dev"},
]
2024-12-20 22:58:51 +00:00
dependencies = ["pyqtgraph>=0.13.7", "jax[cuda12]>=0.4.37", "pytest>=8.3.3", "pyside6>=6.8.0.2", "matplotlib>=3.9.2", "gymnasium[jax]>=1.0.0", "pyvista>=0.44.2", "pyvistaqt>=0.11.1", "stable-baselines3>=2.4.0", "gymnax>=0.0.8", "sbx-rl>=0.18.0", "tyro>=0.9.2", "tensorboard>=2.18.0", "distrax>=0.1.5"]
2024-12-12 01:59:37 +00:00
requires-python = ">=3.10,<3.13"
2024-11-26 07:10:27 +00:00
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
2024-12-12 01:59:37 +00:00
[tool.ruff.lint]
[tool.basedpyright]
reportInvalidTypeForm = false
typeCheckingMode = "off"
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
]