-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (41 loc) · 1.16 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pychuck"
version = "1.0.1"
description = "Python implementation of music programming language Chuck"
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
keywords = ["chuck", "music", "programming", "sound", "synthesis"]
authors = [
{ name = "Yikai Li", email = "[email protected]" },
]
maintainers = [
{ name = "Yikai Li", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dependencies = [
"numpy",
"networkx",
"sounddevice",
]
# dynamic = ["version", "description"]
[project.optional-dependencies]
gui = ["PyQt6-QScintilla"]
cli = []
[project.urls]
#homepage = "https://example.com"
documentation = "https://pychuck.readthedocs.io/en/latest/"
repository = "https://github.com/42x00/pychuck.git"
#changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[project.scripts]
pychuck = "pychuck.core:main_cli"
[project.gui-scripts]
pyaudicle = "pychuck.core:main_gui"
#[project.entry-points."spam.magical"]
#tomatoes = "spam:main_tomatoes"