-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (37 loc) · 1 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "smartwheel-core"
version = "0.0.6"
description = "Keyboard knob/dial controller with a ton of features"
readme = 'README.md'
authors = [{ name = "enaix", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
keywords = ["gui", "keyboard", "knob"]
dependencies = [
"pyserial",
"pynput",
"pyqt6",
"python-rtmidi",
"pyqtdarktheme",
"swcolorpicker",
"matplotlib",
"winsdk; platform_system=='Windows'",
]
[project.optional-dependencies]
dev = [
"black",
"isort",
"numpydoc",
]
[project.urls]
Homepage = "https://github.com/enaix/smartwheel-core"
Documentation = "https://smartwheel-core.readthedocs.io/en/latest/"
[project.gui-scripts]
smartwheel-core = "smartwheel.__main__:main"