-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
34 lines (29 loc) · 907 Bytes
/
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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.7.1,<4"]
[project]
name = "traktor_s4_mk1_midify"
version = "0.4.1"
authors = [
{ name="Conal Moloney", email="[email protected]" },
]
description = "Get MIDI signals from a Traktor S4 mk1 DJ controller under Linux"
readme = "README.md"
requires-python = ">=3.10, <3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"evdev==1.4.0",
"python-rtmidi==1.5.8",
]
[project.scripts]
traktor-s4-mk1-midify = "traktor_s4_mk1_midify.midify:midify"
traktor-s4-mk1-print-events= "traktor_s4_mk1_midify.midify:print_events"
[project.urls]
"Homepaage" = "https://github.com/blaxpot/traktor-s4-mk1-midify"
"Bug Tracker" = "https://github.com/blaxpot/traktor-s4-mk1-midify/issues"
[tool.black]
line-length = 120