-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (43 loc) · 1.2 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
[project]
name = "TerminalAlert"
version = "1.2.1"
authors = [
{ name = "Emmanuel C. Jemeni", email = "jemenichinonso11@gmail.com" }
]
description = "Command Completion Alerts—Stay Notified, Stay Productive!"
readme = "PYPI_README.rst"
requires-python = ">=3.6"
license = { file = "LICENSE" }
keywords = [
"Command",
"Notifications",
"Terminal",
"Productivity",
"Automation",
"Success",
"Execution",
"Alerts",
"CLI",
"Multitasking"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"notify_py>=0.3.43",
"packaging>=24.2"
]
[project.scripts]
terminalalert = "TerminalAlert.main:main"
[project.urls]
"Homepage" = "https://github.com/Jemeni11/TerminalAlert"
"Bug Tracker" = "https://github.com/Jemeni11/TerminalAlert/issues"
"Changelog" = "https://github.com/Jemeni11/TerminalAlert/blob/main/CHANGELOG.md"
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"