18 lines
431 B
TOML
18 lines
431 B
TOML
[build-system]
|
|
requires = ["setuptools>=61"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "triune-cadence"
|
|
version = "0.1.0"
|
|
description = "TriuneCadence: a modular neural music composition system inspired by a 1989 thesis"
|
|
requires-python = ">=3.10"
|
|
|
|
[project.scripts]
|
|
triune-cadence = "composer_ans.cli:main"
|
|
composer-ans = "composer_ans.cli:main"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|