-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·26 lines (23 loc) · 904 Bytes
/
pyproject.toml
File metadata and controls
executable file
·26 lines (23 loc) · 904 Bytes
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "loeric"
authors = [{name = "Marco Amerotti", email = "amerotti@kth.se"}]
dynamic = ["version", "description"]
[tool.setuptools.dynamic]
version = {attr = "loeric.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
loeric = "loeric.__main__:main"
loeric-config = "loeric.loeric_config.loeric_config:main"
loeric-listen = "loeric.listeners.playalong:main"
loeric-combine= "loeric.listeners.combine:main"
loeric-dummy-control = "loeric.listeners.fake_midi_control:main"
loeric-osc = "loeric.listeners.loeric_osc:main"
loeric-midi-listen = "loeric.listeners.midi_velocity_listener:main"
loeric-shell = "loeric.synchronize:main"
loeric-jump= "loeric.listeners.songpos:main"
loeric-intonate= "loeric.listeners.intonation:main"
loeric-schedule= "loeric.loeric_schedule:main"