-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.22 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "termdown"
version = "2.0.0"
description = "Countdown timer for your terminal"
readme = "README.md"
license = "GPL-3.0-only"
authors = [
{ name = "Torsten Rehn", email = "torsten@rehn.email" },
]
keywords = [
"console",
"countdown",
"curses",
"stopwatch",
"terminal",
"timer",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console :: Curses",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = [
"art",
"Pillow",
"python-dateutil",
"windows-curses; platform_system == 'Windows'",
]
[project.scripts]
termdown = "termdown.cli:main"
[project.urls]
Homepage = "https://github.com/trehn/termdown"
Repository = "https://github.com/trehn/termdown"
Changelog = "https://github.com/trehn/termdown/blob/master/CHANGELOG.md"
[tool.hatch.build.targets.sdist]
exclude = [
"uv.lock",
"*.gif",
]