-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.cfg
48 lines (41 loc) · 988 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
48
[bumpversion]
current_version = 3.0.1
tag_name = {new_version}
commit = True
[bumpversion:file:pymove/__init__.py]
[bumpversion:file:setup.py]
[flake8]
ignore = E203, E266, W402, W503, F401, F841, D401
max-line-length = 90
max-complexity = 15
select = B,C,E,D,N,F,W
exclude =
.git,
__pycache__,
*.egg-info,
.venv/*,
venv/*,
.env/*,
env/*,
*.egg.info,
pymove/core/interface.py,
pymove/tests/*
docstring-convention = numpy
[mypy]
ignore_missing_imports = True
no_warn_no_return = True
show_error_codes = True
files = pymove
[isort]
multi_line_output = 3
include_trailing_comma = True
line_length = 90
known_third_party = IPython,branca,dask,dateutil,folium,geohash2,holidays,ipywidgets,joblib,matplotlib,networkx,numpy,pandas,psutil,scipy,setuptools,shapely,sklearn,tqdm
[tool:pytest]
addopts =
--ignore notebooks
--ignore build_tools
--disable-pytest-warnings
--capture sys
[coverage:run]
omit = .venv/*, venv/*, venv.bak/*, .env/*, env/*, env.bak/*, ENV/*, */tests/*