-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (36 loc) · 823 Bytes
/
pyproject.toml
File metadata and controls
44 lines (36 loc) · 823 Bytes
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
[project]
name = "tgtg"
version = "0.18.4"
description = "Unofficial python client for TooGoodToGo API"
readme = "README.md"
authors = [
{ name = "Anthony Hivert", email = "anthony.hivert@gmail.com" }
]
requires-python = ">=3.9"
dependencies = [
"requests>=2.27.1,<3.0",
]
[project.optional-dependencies]
dev = [
"freezegun>=1.5.1,<2.0",
"pytest>=8.3.4,<9.0",
"pytest-cov>=7.1.0,<8.0",
"pytest-responses>=0.5.1,<0.6",
"ruff>=0.15.12",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true
[tool.pytest.ini_options]
addopts = "--cov=tgtg"
[tool.ruff]
line-length = 119
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W"]