-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.35 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
[project]
name = "pynotification"
dynamic = ["version"]
description = "Python module to trigger OS-agnostic notification/messagebox"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Terminals :: Terminal Emulators/X Terminals"
]
keywords = ["system", "notification"]
requires-python = ">=3"
dependencies = [
"pywin32; platform_system=='Windows'"
]
[tool.setuptools]
packages = ["pynotification"]
[tool.setuptools.dynamic]
version = {attr = "pynotification.version"}
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = ["pytest", "pre-commit"]
[project.urls]
Homepage = "https://github.com/thevickypedia/pynotification"
Docs = "https://thevickypedia.github.io/pynotification/"
Source = "https://github.com/thevickypedia/pynotification"
"Bug Tracker" = "https://github.com/thevickypedia/pynotification/issues"
"Release Notes" = "https://github.com/thevickypedia/pynotification/blob/main/release_notes.rst"