25 lines
566 B
TOML
25 lines
566 B
TOML
[project]
|
|
name = "simfile_smoketest"
|
|
version = "0.1.0"
|
|
description = "Smoketest for the `simfile` library"
|
|
authors = [{ name = "Ash Garcia", email = "github@garcia.sh" }]
|
|
requires-python = "~=3.10"
|
|
license = "MIT"
|
|
dependencies = [
|
|
"simfile",
|
|
"peewee>=3.15.1,<4",
|
|
"semver>=2.13.0,<3",
|
|
"typed-argument-parser>=1.7.2,<2",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = ["black>=22.6.0,<23"]
|
|
|
|
[tool.uv]
|
|
|
|
[tool.uv.sources]
|
|
simfile = { git = "https://github.com/garcia/simfile.git", branch = "v3" }
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|