-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 956 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 956 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
31
32
33
34
35
36
[tool.poetry]
name = "killtimer"
version = "0.4.0"
description = "Closes application after specified work interval"
license = "GPL-3.0-or-later"
homepage = "https://github.com/idle-code/killtimer"
readme = "README.md"
authors = ["Paweł Żukowski <p.z.idlecode@gmail.com>"]
classifiers = [
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = "^3.8"
rich = "^12.4.3"
desktop-notifier = "^3.4.0"
pytimeparse = "^1.1.8"
humanfriendly = "^10.0"
PyAudio = "^0.2.13"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
killtimer = "killtimer.main:main"
killtimer-stats = "killtimer.stats:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"