-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
39 lines (33 loc) · 945 Bytes
/
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
[tool.poetry]
name = "ntfy-lite"
version = "1.0.2"
description = "minimalistic python API for sending ntfy notifications"
authors = ["Vincent Berenz <vberenz@tuebingen.mpg.de>"]
license = "BSD-3-Clause"
readme = "README.md"
packages = [{include = "ntfy_lite"}]
[[tool.poetry.source]]
name = "github"
url = "https://github.com/MPI-IS/ntfy_lite"
default = false
secondary = false
[tool.poetry.scripts]
ntfy_lite_push_demo = 'ntfy_lite.demo_push:run'
ntfy_lite_logging_demo = 'ntfy_lite.demo_logging:run'
[tool.poetry.dependencies]
python = ">3.8.1,<4"
requests = "^2.28.2"
validators = "^0.20.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.2.0"
flake8 = "^6.0.0"
pytest = "^7.3.0"
types-requests = "^2.28.11.17"
ipython = "^8.12.0"
mkdocs = "^1.4.2"
mkdocstrings = {extras = ["python"], version = "^0.21.2"}
mkdocs-material = "^9.1.6"
black = "^23.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"