Files
interpretations/pyproject.toml
T
kennethreitz b9d97a64ff Update README with play command, uv pins Python 3.14
README: full picker controls, render-all docs, uv run play.
pyproject: requires-python >=3.10 (compat), uv pins 3.14.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-03 12:47:52 -04:00

32 lines
612 B
TOML

[project]
name = "interpretations"
version = "0.1.0"
description = "An album of compositions written in Python using pytheory."
license = "ISC"
authors = [
{ name = "Kenneth Reitz", email = "me@kennethreitz.org" },
]
requires-python = ">=3.10"
dependencies = [
"pytheory>=0.40.9",
]
[tool.uv]
python-preference = "only-managed"
[tool.uv.python]
version = "3.14"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["play"]
[project.scripts]
play = "play:main"
[project.urls]
Repository = "https://github.com/kennethreitz/interpretations"