migrate to uv

This commit is contained in:
Chris Proctor
2026-01-13 16:27:19 -05:00
parent f7fd3e8a7e
commit f4c9ceea15
3 changed files with 446 additions and 611 deletions

View File

@@ -1,28 +1,24 @@
[project]
name = "problemset-geometry"
version = "0.1.0"
version = "5.0.0"
description = ""
authors = [
{name = "Chris Proctor",email = "chris@chrisproctor.net"}
]
license = {text = "MIT"}
authors = [{ name = "Chris Proctor", email = "chris@chrisproctor.net" }]
requires-python = ">=3.10, <4.0"
dependencies = [
"superturtle (>=1.0.0,<2.0.0)"
]
license = { text = "MIT" }
dependencies = ["superturtle (>=1.0.0,<2.0.0)"]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.poetry]
packages = [
{include = "geometry"}
[dependency-groups]
docs = [
"sphinx>=7.3.7,<8",
"sphinx-rtd-theme>=2.0.0,<3",
]
[tool.poetry.group.docs]
optional = true
[tool.hatch.build.targets.sdist]
include = ["geometry"]
[tool.poetry.group.docs.dependencies]
sphinx = "^7.3.7"
sphinx-rtd-theme = "^2.0.0"
[tool.hatch.build.targets.wheel]
include = ["geometry"]