-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.12 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "mdcmp"
authors = [
{name = "Matth Ingersoll", email = "[email protected]"},
]
description = "MIDI Composer"
requires-python = ">=3.10"
keywords = ["MIDI", "Music", "Generative"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"MIDIUtil==1.2.1",
"mingus==0.6.1",
]
dynamic = ["version"]
[project.optional-dependencies]
# pip install -e '.[dev]'
dev = [
"black==23.1.0",
"pygame",
"librosa",
]
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
## generate MIDI file from .drum file
#mdcmp-drummer = "mdcmp.drummer:main"
## generate MIDI file from .comp file
#mdcmp-composer = "mdcmp.composer:main"
## create MIDI file from progression data file
#mdcmp-progression = "mdcmp.composer:generate"
## generate MIDI file from .comp and .drum file
#mdcmp-combiner = "mdcmp.composer:combiner"
## Main CLI program
#mdcmp = "mdcmp.cli:cli"
[tool.setuptools.dynamic]
version = {attr = "mdcmp.VERSION"}
readme = {file = ["README.md"]}