-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
66 lines (59 loc) · 1.44 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
[project]
name = "dltlyse"
dynamic = ["version"]
description = "DLT trace file analyser for the BMW head unit platform"
authors = [
{name = "BMW CarIT", email="[email protected]"},
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.7"
keywords = ["dlt"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
]
dependencies = [
]
[project.optional-dependencies]
dev = [
"black>=22.10",
"flake8>=5",
"pytest>=7.2.0",
]
[project.urls]
homepage = "https://github.com/bmwcarit/dltlyse"
repository = "https://github.com/bmwcarit/dltlyse"
[project.scripts]
dltlyse = "dltlyse.run_dltlyse:main"
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/dltlyse/_version.py"
[tool.black]
line-length = 119
target_version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
| _version.py
)
'''