packaging: Use pyproject.toml files instead of setup.py

- Should at least work with pip and uv.
- Also added uv.lock files.
This commit is contained in:
Andrew Hamilton 2024-12-10 22:54:35 +10:00
parent a6e802e852
commit e164f4e7d1
12 changed files with 303 additions and 87 deletions

19
termstr/uv.lock generated Normal file
View file

@ -0,0 +1,19 @@
version = 1
requires-python = ">=3.11"
[[package]]
name = "cwcwidth"
version = "0.1.5"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/38/17/aadd0c6190dca91aa27c4d7e84d69d30fdf4966e7764247cdc395f8fe7d9/cwcwidth-0.1.5.tar.gz", hash = "sha256:2c840e7d85f6de45c45986b416d79312c91882e1121b78d4c347e49c4238c09d", size = 11071 }
[[package]]
name = "termstr"
version = "2024.12.7"
source = { virtual = "." }
dependencies = [
{ name = "cwcwidth" },
]
[package.metadata]
requires-dist = [{ name = "cwcwidth", specifier = "==0.1.5" }]