forked from mondbaron/mvg
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
74 lines (62 loc) · 1.56 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
[build-system]
requires = [ "setuptools>=61.0", "wheel" ]
build-backend = "setuptools.build_meta"
[project]
name = "mvg"
version = "1.1.2"
description = "An unofficial interface to timetable information of the Münchner Verkehrsgesellschaft (MVG)."
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.7"
dependencies = [ "aiohttp~=3.8", "furl~=2.1" ]
[[project.authors]]
name = "Martin Dziura"
email = "m.dziura@tum.de"
[project.urls]
"Documentation" = "https://mondbaron.github.io/mvg"
"Source" = "https://github.com/mondbaron/mvg"
"Bug Tracker" = "https://github.com/mondbaron/mvg/issues"
[project.optional-dependencies]
dev = [
"black",
"build",
"flake8",
"flake8",
"flake8-bugbear",
"flake8-docstrings",
"flake8-pyproject",
"flake8-quotes",
"flake8-requirements",
"flake8-simplify",
"flake8-warnings",
"mypy",
"pylint",
"pytest",
"pytest-asyncio",
"sphinx",
"sphinx-mdinclude",
"sphinx-pyproject",
"sphinx-rtd-theme",
"twine",
]
[tool.pylint]
max-line-length = 120
[tool.flake8]
extend-ignore = "E203"
inline-quotes = "double"
max-line-length = 120
[tool.mypy]
follow_imports = "normal"
ignore_missing_imports = true
show_column_numbers = true
show_error_codes = true
strict = true
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
sort_reexports = true