-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (43 loc) · 1.18 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
42
43
44
45
46
47
48
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "moveboxtracker"
dynamic = ["version", "description"]
authors = [
{ name = "Ian Kluft", email="ko6yq.dev+python@gmail.com" }
]
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Operating System :: POSIX",
"Intended Audience :: End Users/Desktop"
]
requires-python = ">=3.10"
dependencies = [
"colorlookup >= 0.2",
"weasyprint >= 55, <= 61",
"qrcodegen >=1.0, <2.0",
"pyxdg >=0.27, < 2.0",
"prettytable >=2.3, <4.0",
"lib_programname >=2.0, <3.0",
"tzlocal >=3.0, <6.0",
"sh >=2.0, <3.0",
]
[project.urls]
Home = "https://github.com/ikluft/moveboxtracker"
Source = "https://github.com/ikluft/moveboxtracker/"
Bug_Tracker = "https://github.com/ikluft/moveboxtracker/issues"
[project.scripts]
movebox = "moveboxtracker.cli:run"
moveboxtracker = "moveboxtracker.cli:run"
[project.optional-dependencies]
test = [
"flake8 >= 3.0.0, <7.0"
]
doc = ["sphinx"]
[tool.black]
line-length = 100
target-version = ['py310']