forked from Der-Henning/tgtg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.28 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.poetry]
authors = ["Henning Merklinger <[email protected]>"]
description = "Notifications for Too Good To Go"
documentation = "https://github.com/Der-Henning/tgtg/wiki"
keywords = ["tgtg", "toogoodtogo", "notifications"]
license = "GPL-3.0-or-later"
name = "tgtg-scanner"
packages = [{include = "tgtg_scanner"}]
readme = "README.md"
repository = "https://github.com/Der-Henning/tgtg"
version = "1.20.3"
[tool.poetry.dependencies]
apprise = "^1.4.0"
colorlog = "^6.7.0"
cron-descriptor = "^1.4.0"
googlemaps = "^4.10.0"
humanize = "^4.7.0"
packaging = "^23.1"
progress = "^1.6"
prometheus-client = "^0.20.0"
pycron = "^3.0.0"
python = ">=3.9,<3.13"
python-pushsafer = "^1.1"
python-telegram-bot = {extras = ["callback-data"], version = "^20.8"}
requests = "^2.31.0"
[tool.poetry.group.build.dependencies]
pyinstaller = "^6.3.0"
[tool.poetry.group.test.dependencies]
pre-commit = "^3.3.3"
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
pytest-mock = "^3.11.1"
responses = "^0.25.0"
[tool.poetry.scripts]
scanner = "tgtg_scanner.__main__:main"
tgtg_server = "tests.tgtg_server:main"
[tool.pytest.ini_options]
markers = [
"tgtg_api: test directly calls the tgtg API (deselect with '-m \"not tgtg_api\"')"
]