-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
32 lines (28 loc) · 845 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "quadrocontrol"
version = "0.1"
authors = [
{ name="Leonard Anderweit", email="leonard.anderweit@gmail.com" },
]
description = "GUI control for Aquacomputer Quadro"
readme = "README.md"
repository = "https://github.com/leoratte/aquacomputer-quadro-control"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"pyusb",
"crccheck",
"pyqt5"
]
[project.scripts]
quadro-control = "quadrocontrol:quadrocontrol.main"
[project.urls]
"Homepage" = "https://github.com/leoratte/aquacomputer-quadro-control"
"Bug Tracker" = "https://github.com/leoratte/aquacomputer-quadro-control/issues"