33 lines
815 B
TOML
33 lines
815 B
TOML
[project]
|
|
name = "solarcarsim"
|
|
version = "0.1.0"
|
|
description = "A solar car racing simulation library and GUI tool"
|
|
authors = [
|
|
{name = "saji", email = "saji@saji.dev"},
|
|
]
|
|
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"]
|
|
requires-python = ">=3.10,<3.13"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
|
|
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
|
|
[tool.pdm]
|
|
distribution = true
|
|
|
|
|
|
[tool.ruff.lint]
|
|
|
|
|
|
[tool.basedpyright]
|
|
reportInvalidTypeForm = false
|
|
typeCheckingMode = "off"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ipykernel>=6.29.5",
|
|
]
|