Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Der-Henning
GitHub Repository: Der-Henning/tgtg
Path: blob/main/pyproject.toml
725 views
1
[build-system]
2
build-backend = "poetry.core.masonry.api"
3
requires = ["poetry-core>=1.0.0"]
4
5
[project]
6
authors = [{name = "Henning Merklinger", email = "[email protected]"}]
7
dependencies = [
8
'apprise (>=1.4.0,<2.0.0)',
9
'babel (>=2.16.0,<3.0.0)',
10
'colorlog (>=6.7.0,<7.0.0)',
11
'cron-descriptor (>=1.4.0,<2.0.0)',
12
'discord (>=2.3.2,<3.0.0)',
13
'googlemaps (>=4.10.0,<5.0.0)',
14
'humanize (>=4.7.0,<5.0.0)',
15
'packaging (>=25.0,<26.0)',
16
'progress (>=1.6,<2.0)',
17
'prometheus-client (>=0.21.0,<0.22.0)',
18
'pycron (>=3.0.0,<4.0.0)',
19
'python-pushsafer (>=1.1,<2.0)',
20
'python-telegram-bot[callback-data] (>=22.0.0,<23.0.0)',
21
'requests (>=2.31.0,<3.0.0)'
22
]
23
description = "Notifications for Too Good To Go"
24
dynamic = ["version"]
25
keywords = ["tgtg", "toogoodtogo", "notifications"]
26
license = "GPL-3.0-or-later"
27
name = "tgtg-scanner"
28
readme = "README.md"
29
requires-python = '>=3.9,<3.13'
30
31
[project.scripts]
32
scanner = "tgtg_scanner.__main__:main"
33
tgtg_server = "tests.tgtg_server:main"
34
35
[project.urls]
36
documentation = "https://github.com/Der-Henning/tgtg/wiki"
37
repository = "https://github.com/Der-Henning/tgtg"
38
39
[tool.poetry]
40
packages = [{include = "tgtg_scanner"}]
41
requires-poetry = '>=2.0.0,<3.0.0'
42
version = "1.23.0"
43
44
[tool.poetry.group.build.dependencies]
45
pyinstaller = "^6.3.0"
46
47
[tool.poetry.group.test.dependencies]
48
pre-commit = "^4.0.1"
49
pytest = "^8.0.0"
50
pytest-cov = "^6.0.0"
51
pytest-mock = "^3.11.1"
52
responses = "^0.25.0"
53
54
[tool.pytest.ini_options]
55
markers = [
56
"tgtg_api: test directly calls the tgtg API (deselect with '-m \"not tgtg_api\"')"
57
]
58
59