25 lines
534 B
TOML
25 lines
534 B
TOML
[project]
|
|
name = "problemset-geometry"
|
|
version = "5.0.0"
|
|
description = ""
|
|
authors = [{ name = "Chris Proctor", email = "chris@chrisproctor.net" }]
|
|
requires-python = ">=3.10, <4.0"
|
|
license = { text = "MIT" }
|
|
dependencies = ["superturtle (>=1.0.0,<2.0.0)"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[dependency-groups]
|
|
docs = [
|
|
"sphinx>=7.3.7,<8",
|
|
"sphinx-rtd-theme>=2.0.0,<3",
|
|
]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["geometry"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
include = ["geometry"]
|