mirror of
https://github.com/kennethreitz/interpretations.git
synced 2026-06-05 06:46:15 +00:00
c25b9cbcc8
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
29 lines
577 B
TOML
29 lines
577 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.42.1",
|
|
]
|
|
|
|
[tool.uv]
|
|
python-preference = "only-managed"
|
|
|
|
[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"
|