-
-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
78 lines (71 loc) · 1.73 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
include = [
"notifiers",
"notifiers_cli",
"LICENSE",
]
[project]
name = "notifiers"
version = "1.3.6"
description = "The easy way to send notifications"
authors = [{ name = "liiight", email = "python.notifiers@gmail.com" }]
requires-python = ">=3.8"
readme = "README.md"
license = "MIT"
keywords = [
"notifications",
"messaging",
"email",
"push",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
]
dependencies = [
"click>=8.0.3",
"importlib-metadata>=3.6",
"jsonschema>=4.4.0",
"requests>=2.27.1,<3",
]
[project.urls]
Homepage = "https://github.com/liiight/notifiers"
Repository = "https://github.com/liiight/notifiers"
Documentation = "https://notifiers.readthedocs.io/en/latest/"
[project.scripts]
notifiers = "notifiers_cli.core:entry_point"
[dependency-groups]
dev = [
"pytest",
"codecov",
"pytest-cov",
"sphinx-autodoc-annotation~=1.0.post1",
"sphinx-rtd-theme",
"hypothesis",
"pre-commit",
"retry",
"Sphinx",
]
[tool.hatch.build.targets.sdist]
include = [
"notifiers",
"notifiers_cli",
"LICENSE",
]
exclude = ["tests"]
[tool.pytest.ini_options]
markers = [
"online: marks tests running online",
]