-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "notifiers"
version = "1.3.4"
description = "The easy way to send notifications"
authors = ["liiight <[email protected]>"]
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
]
readme = "README.md"
documentation = "https://notifiers.readthedocs.io/en/latest/"
homepage = "https://github.com/liiight/notifiers"
repository = "https://github.com/liiight/notifiers"
exclude = ["tests"]
include = ["LICENSE"]
keywords = ["notifications", "messaging", "email", "push"]
packages = [
{ include = 'notifiers' },
{ include = "notifiers_cli" },
]
[tool.poetry.dependencies]
python = "^3.7"
click = "^8.0.3"
jsonschema = "^4.4.0"
requests = "^2.27.1"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
codecov = "^2.1.12"
pytest-cov = "^3.0.0"
sphinx-autodoc-annotation = "^1.0-1"
sphinx-rtd-theme = "^1.0.0"
hypothesis = "^6.37.0"
pre-commit = "^2.20.0"
retry = "^0.9.2"
Sphinx = "^5.0.2"
[tool.poetry.scripts]
notifiers = "notifiers_cli.core:entry_point"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"online: marks tests running online",
]