-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 615 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 615 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
27
28
29
30
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "QuickSync4Linux"
version = "1.0"
authors = [
{ name="https://github.com/schorschii" },
]
description = "Gigaset QuickSync for Linux"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE.txt"}
dependencies = [
"pyserial",
]
[project.urls]
Homepage = "https://github.com/schorschii/QuickSync4Linux"
Issues = "https://github.com/schorschii/QuickSync4Linux/issues"
[project.scripts]
quicksync = "QuickSync4Linux.quicksync:main"
[tool.hatch.build.targets.sdist]
exclude = [
"assets/",
"venv/",
]