-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
77 lines (70 loc) · 1.97 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
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "onboardapis"
description = "A pure Python wrapper for the on-board APIs of many different transportation providers."
version = "2.0.0"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
keywords = [
"public-transport",
"train",
"api",
]
license = { text = "MIT" }
authors = [
{ name = "Felix Zenk", email = "[email protected]" },
]
dependencies = [
"geopy>=2.4.1",
"gql[all]>=3.5.0",
"restfly>=1.4.7",
"requests>=2.32.3",
"beautifulsoup4>=4.12.3",
"deprecation>=2.1.0",
"PyYAML>=6.0.1",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Typing :: Typed",
]
[project.optional-dependencies]
dev = [
"flake8>=7.0.0",
"Flake8-pyproject>=1.2.3",
"pdoc>=14.4.0",
"build>=1.2.1",
"pytest>=8.2.0",
"pytest-cov>=5.0.0",
]
[project.urls]
Homepage = "https://felix-zenk.github.io/onboardapis"
Documentation = "https://felix-zenk.github.io/onboardapis/"
Repository = "https://github.com/felix-zenk/onboardapis"
Issues = "https://github.com/felix-zenk/onboardapis/issues"
[tool.setuptools.packages.find]
include = ["onboardapis", "onboardapis.*"]
[tool.setuptools.package-data]
onboardapis = [
"py.typed"
]
"onboardapis.train" = [
"de/db/mappings.yaml",
"third_party/unwired/queries/*.graphql",
"third_party/unwired/mutations/*.graphql",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.flake8]
max-line-length = 120