forked from BAMWelDX/weldx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
122 lines (110 loc) · 3.11 KB
/
setup.cfg
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[metadata]
name = weldx
author = Cagtay Fabry
author-email = [email protected]
home-page = https://www.bam.de/weldx
description = Python API for the WelDX file format and standard
long-description = file: README.md
long_description_content_type = text/markdown
license = BSD License
license-file = LICENSE
platform = any
keywords =
welding
weldx
bam
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering :: Physics
project_urls =
Documentation = https://weldx.readthedocs.io
Source Code = https://github.com/BAMweldx/weldx
Bug Tracker = https://github.com/BAMweldx/weldx/issues
Changelog = https://github.com/BAMweldx/weldx/blob/master/CHANGELOG.md
[options]
packages = find:
python_requires = >=3.8
setup_requires =
setuptools >=38.3.0
setuptools_scm
install_requires =
numpy >=0.18
pandas >=1.0
xarray >=0.15
scipy >=1.4,!=1.6.0,!=1.6.1
sympy >=1.6
pint >=0.11
asdf >=2.7
bottleneck >=1.3
boltons
networkx >=2
matplotlib >=3
fs
ipywidgets
k3d
meshio
include_package_data = True
[options.extras_require]
test =
pytest
pytest-cov
pytest-xdist
nbval
[options.entry_points]
asdf_extensions =
weldx = weldx.asdf.extension:WeldxExtension
weldx-asdf = weldx.asdf.extension:WeldxAsdfExtension
[flake8]
# References:
# https://flake8.readthedocs.io/en/latest/user/configuration.html
# https://flake8.readthedocs.io/en/latest/user/error-codes.html
# Note: there cannot be spaces after comma's here
ignore =
W503,W504, # line break after binary operator
E203 # E203 whitespace before ':' (not PEP8 compliant anyway)
max-line-length = 88
select = C,E,F,W,B,B950 # black formatting options
per-file-ignores =
aws_setup.py:E501
exclude =
versioneer.py,
__init__.py,
doc/conf.py,
[pydocstyle]
match = (?!__)(?!_version)(?!conftest).*\.py
match_dir = [^\.][^\docs].*
ignore = D203,D213
[tool:pytest]
addopts = --tb=short --color=yes -rs --cov=weldx --cov-report=term-missing:skip-covered
#addopts = --tb=short --color=yes -rs -p no:cov
# custom test markers, see https://docs.pytest.org/en/latest/example/markers.html#mark-examples
markers =
slow: marks tests as slow to run (skipped by default, enable with --runslow option)
asdf_schema_root = weldx/asdf/schemas
#asdf_schema_tests_enabled = true
asdf_schema_skip_tests =
weldx.bam.de/weldx/datamodels/single_pass_weld-1.0.0.schema.yaml
[isort]
profile = black
default_section = THIRDPARTY
known_first_party = weldx
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[coverage:report]
omit =
weldx/_version.py
weldx/tests/*
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# ignore class __repr__-like functions:
def __repr__
def __str__
def _ipython_display_