-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (43 loc) · 1.02 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[project]
name = "agni"
dynamic = ["version"]
description = """\
Music compositional tools inspired by the techniques of Claude Vivier
"""
authors = [{ name = "Ben Rosen", email = "[email protected]" }]
readme = "README.md"
license = { text = "MIT" }
keywords = ["claude vivier", "lilypond", "music notation", "music", "spectral"]
requires-python = ">=3.11"
dependencies = [
"typer[all]>=0.12.3",
"abjad[all]>=3.19",
"supriya==24.3b2",
"abjad-ext-rmakers>=3.19",
"more-itertools>=10.3.0",
]
[project.urls]
repository = "https://github.com/tymbalodeon/agni"
[project.scripts]
agni = "agni.main:agni"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pyright]
venvPath = "."
venv = ".venv"
[tool.ruff]
exclude = [".git", ".ruff_cache", ".venv", "build", "dist"]
line-length = 79
indent-width = 4
[tool.pdm.version]
source = "file"
path = "agni/__init__.py"
[tool.pdm.dev-dependencies]
dev = [
"bpython>=0.24",
"py-spy>=0.3.14",
"pre-commit>=3.5.0",
"coverage>=7.3.2",
"pytest>=7.4.3",
]