-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 1.04 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "TimeForge"
version = "1.2.3"
authors = [
{ name="Michael Hohenstein", email="michael@hohenste.in" },
]
description = "Create realistic looking but fake time documentation for your student job at KIT"
readme = "README.md"
requires-python= ">=3.7"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Natural Language :: German",
"Topic :: Office/Business",
"Topic :: Office/Business :: Scheduling",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
dependencies = [
"argcomplete >= 3.0.5",
"feiertage-de >= 0.1.0",
"requests >= 2.31.0",
"pypdf ~= 5.0",
"ConfigArgParse >= 1.7",
]
[project.urls]
"Homepage" = "https://github.com/MitchiLaser/timeforge"
"Repository" = "https://github.com/MitchiLaser/timeforge"
[project.scripts]
timeforge = "timeforge.__main__:main"
timeforge-tui = "timeforge.gui:main"