20 lines
424 B
TOML
20 lines
424 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>=0.4.35", "pytest>=8.3.3"]
|
||
|
requires-python = ">=3.12"
|
||
|
readme = "README.md"
|
||
|
license = {text = "MIT"}
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["pdm-backend"]
|
||
|
build-backend = "pdm.backend"
|
||
|
|
||
|
|
||
|
[tool.pdm]
|
||
|
distribution = true
|