-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (30 loc) · 1008 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]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wage_labor_record"
authors = [ {name = "Maximilian Ernestus", email = "maximilian@ernestus.de" }]
description = "A tool to track you wage labor."
readme = "README.md"
keywords = ["timetracking"]
requires-python = ">=3.8"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Utilities",
]
dynamic = ["version"]
dependencies = [
"PyGObject",
]
url = "https://github.com/ernestum/Wage-Labor-Record/"
[project.gui-scripts]
wlr = "wage_labor_record.wlr_app:main"
[tool.setuptools_scm]