forked from christoph2/asamint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
93 lines (84 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[tool.pdm]
includes = []
[tool.pdm.dev-dependencies]
dev = []
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[project]
# PEP 621 project metadata
# See https://www.python.org/dev/peps/pep-0621/
name = "asamint"
authors = [
{name = "Christoph Schueler", email = "[email protected]"},
]
requires-python = ">=3.8,<4.0"
dependencies = [
"objutils>=0.4.12",
"pya2ldb>=0.12.79",
"asammdf>=7.0.7",
"pyxcp>=0.18.51",
"numpy>=1.22.4",
]
version = "0.1.4"
description="Adds high-level, convenience, integration related functions for several opensource projects."
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers", "Topic :: Software Development",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
license = {file = "LICENSE"}
[project.urls]
homepage="https://github.com/christoph2/asamint"
[tool.pytest]
addopts = "--verbose --tb=short --junitxml=result.xml -o junit_family=xunit2"
testpaths = "tests"
[tool.flake8]
ignore = ["D203", "E203", "E266", "E501", "W503", "F403", "F401", "BLK100"]
exclude = '''
/(
\.git
| __pycache__
| \.mypy_cache
| \.tox
| \.venv
| \.eggs
| _build
| build
| __pypackages__
| docs
| dist
| asamint/parsers/dcm20Parser.py
| asamint/parsers/dcm20Lexer.py
)/
'''
max-complexity = 10
count = true
statistics = true
show-source = true
max-line-length = 132
select = ["B","C","E","F","W","T4","B9"]
[tool.black]
line-length=132
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| _build
| __pypackages__
| build
| docs
| __pycache__
| dist
| asamint/parsers/dcm20Parser.py
| asamint/parsers/dcm20Lexer.py
)/
'''