-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.39 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = [
"wheel",
"setuptools-scm[toml]>=8.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "apyefa"
version = "1.1.0"
requires-python = ">= 3.11"
description = "Python API for EFA(Elektronische Fahrplanauskunft) async requests"
authors = [
{name = "Alex Jung", email = "jungdevelop@gmail.com"}
]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["efa", "public transport", "traffic"]
dependencies = [
"aiohttp>=3.11.2",
"voluptuous>=0.15.2",
"tzdata>=2024.2"
]
[project.optional-dependencies]
tests = [
'coverage>=5.0.3',
'pytest-cov',
'pytest',
'pytest-asyncio>=0.24.0',
'pytest-benchmark[histogram]>=3.2.1',
'requests>=2.32.3'
]
[tool.pytest.ini_options]
minversion = "6.0"
asyncio_mode="auto"
addopts = "-ra -q"
asyncio_default_fixture_loop_scope = "function"
testpaths = [
"tests"
]
[tool.coverage.report]
exclude_also = [
"_LOGGER.",
"def __repr__",
"if self.debug:",
"if settings.DEBUG",
"raise AssertionError",
"raise NotImplementedError",
"if 0:",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"class .*\\bProtocol\\):",
"@(abc\\.)?abstractmethod"
]
[project.urls]
Homepage = "https://github.com/alex-jung/apyefa"
Documentation = "https://github.com/alex-jung/apyefa"
Repository = "https://github.com/alex-jung/apyefa"
Issues = "https://github.com/alex-jung/apyefa/issues"