-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (61 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
66
67
68
69
70
71
72
73
74
[project]
name = "synchrotron"
version = "0.1.0"
description = "Graph-based live audio manipulation engine implemented in Python"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
keywords = ["audio-processing", "synthesizer"]
authors = [
{ name = "ThatOtherAndrew", email = "[email protected]" }
]
maintainers = [
{ name = "ThatOtherAndrew", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Mixers",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
]
dependencies = [
"fastapi",
"lark",
"numpy",
"pyaudio",
"python-rtmidi",
"soundfile",
"typer",
"uvicorn",
]
[project.optional-dependencies]
dev = [
"build",
"textual-dev",
]
[project.urls]
"Homepage" = "https://github.com/ThatOtherAndrew/Synchrotron"
"Bug Reports" = "https://github.com/ThatOtherAndrew/Synchrotron/issues"
"Source" = "https://github.com/ThatOtherAndrew/Synchrotron"
[project.scripts]
synchrotron-server = "synchrotron.server.cli:cli"
synchrotron-console = "synchrotron.console.app:run_app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
packages = ["synchrotron"]