-
-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.86 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (61 loc) · 1.86 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[project]
authors = [
{ name = "Henning Merklinger", email = "henning.merklinger@gmail.com" },
]
dependencies = [
'apprise (>=1.4.0,<2.0.0)',
'babel (>=2.16.0,<3.0.0)',
'colorlog (>=6.7.0,<7.0.0)',
'cron-descriptor (>=2.0.6,<3.0.0)',
'discord (>=2.3.2,<3.0.0)',
'googlemaps (>=4.10.0,<5.0.0)',
'humanize (>=4.7.0,<6.0.0)',
'packaging (>=25.0,<27.0)',
'progress (>=1.6,<2.0)',
'prometheus-client (>=0.21.0,<0.27.0)',
'pycron (>=3.0.0,<4.0.0)',
'python-pushsafer (>=1.1,<2.0)',
'python-telegram-bot[callback-data] (>=22.0.0,<23.0.0)',
'requests (>=2.31.0,<3.0.0)',
'tgtg (>=0.19.0,<1.0.0)',
]
description = "Notifications for Too Good To Go"
dynamic = ["version"]
keywords = ["tgtg", "toogoodtogo", "notifications"]
license = "GPL-3.0-or-later"
name = "tgtg-scanner"
readme = "README.md"
requires-python = '>=3.10,<3.15'
[project.scripts]
scanner = "tgtg_scanner.__main__:main"
tgtg_server = "tests.tgtg_server:main"
[project.urls]
documentation = "https://github.com/Der-Henning/tgtg/wiki"
repository = "https://github.com/Der-Henning/tgtg"
[tool.poetry]
packages = [{ include = "tgtg_scanner" }]
include = [{ path = "tgtg_scanner/static/*", format = ["sdist", "wheel"] }]
requires-poetry = '>=2.0.0,<3.0.0'
version = "1.26.0"
[tool.poetry.group.build.dependencies]
pyinstaller = "^6.3.0"
[tool.poetry.group.test.dependencies]
pre-commit = "^4.0.1"
pytest = "^9.0.0"
pytest-cov = "^7.0.0"
pytest-mock = "^3.11.1"
responses = "^0.26.0"
[tool.pytest.ini_options]
markers = [
"tgtg_api: test directly calls the tgtg API (deselect with '-m \"not tgtg_api\"')",
]
[tool.ruff]
line-length = 130
[tool.ruff.lint]
select = ["E", "F", "B", "I", "UP"]
[tool.ruff.lint.pyupgrade]
# Preserve types, even if a file imports `from __future__ import annotations`.
keep-runtime-typing = true