-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
65 lines (57 loc) · 1.84 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools>=0.67.4.0", "Cython>=0.29.33", "cymem>=2.0.6"]
build-backend = "setuptools.build_meta"
[project]
name = "aiotone"
description = "Beep beep."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GPL-3.0-or-later" }
keywords = ["MIDI", "Sequencer", "FM synthesizer", "asyncio", "Monome"]
authors = [{ name = "Łukasz Langa", email = "lukasz@langa.pl" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: MIDI",
"Topic :: Multimedia :: Sound/Audio :: Mixers",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
"Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Audio",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"SoundFile",
"attrs",
"click",
"miniaudio",
"pyloudnorm",
"python-rtmidi",
"uvloop",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://github.com/ambv/aiotone#readme"
Issues = "https://github.com/ambv/aiotone/issues"
Source = "https://github.com/ambv/aiotone"
[project.scripts]
iridium = "aiotone.iridium:main"
redblue = "aiotone.redblue:main"
loudness = "aiotone.loudness:main"
als_to_cue = "aiotone.als_to_cue:main"
[project.optional-dependencies]
dev = ["black", "mypy", "pytest", "ruff"]
[tool.setuptools.dynamic]
version = { attr = "aiotone.__version__" }
[tool.setuptools]
packages = ["aiotone"]
py-modules = ["build"]
[tool.coverage.run]
branch = true
parallel = true
omit = []
[tool.coverage.report]
exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"]