forked from OpenMined/PyDP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
47 lines (39 loc) · 961 Bytes
/
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
[bumpversion]
current_version = 1.1.3rc6
commit = True
tag = True
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:src/pydp/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[aliases]
# Define setup.py command aliases here
[flake8]
max-line-length = 120
[mypy]
python_version = 3.10.6
ignore_missing_imports = True
[tool:pytest]
norecursedirs =
bazel-PyDP
third_party
build
[isort]
profile=black
force_single_line=True
known_pydp=pydp
remove_redundant_aliases=True
sections=FUTURE,STDLIB,THIRDPARTY,PYDP,LOCALFOLDER
default_section=THIRDPARTY
lines_between_types=0
force_sort_within_sections=True
import_heading_future=future
import_heading_stdlib=stdlib
import_heading_thirdparty=third party
import_heading_pydp=pydp absolute
import_heading_localfolder=pydp relative
ignore_comments=False
force_grid_wrap=True
honor_noqa=True