-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
41 lines (37 loc) · 1017 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "pang"
version = "25.03b6"
authors = [
{ name="Tsz Kiu Pang" },
]
description = "Tsz Kiu Pang's Abjad library"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"abjad @ git+https://github.com/Abjad/abjad.git@8f66aa297c15a6f87d329c962b0d960fa6c6310c",
"abjad-ext-nauert @ git+https://github.com/Abjad/abjad-ext-nauert.git@f636f81f10db16583bd75c6397bd93881a80ce2f",
"numpy",
"tomlkit",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
test = [
"black",
"flake8",
"isort",
"pytest",
"mypy>=1.4.1, <1.5.0",
]
[project.scripts]
make_repository = "pang.scripts.make_repository:main"
make_sections = "pang.scripts.make_sections:main"
make_score = "pang.scripts.make_score:main"
import_abjad_ily = "pang.scripts.import_abjad_ily:main"