-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
47 lines (40 loc) · 1.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
[aliases]
test=pytest
[tool:pytest]
addopts = --verbose
python_files = tests/*/*.py
[versioneer]
VCS = git
style = pep440
versionfile_source = provenance/_version.py
versionfile_build = provenance/_version.py
tag_prefix =
parentdir_prefix = provenance-
[flake8]
exclude = docs
ignore = E203,E266,E501,W503,E722,E402,C901,E731,F401
max-line-length = 100
max-complexity = 18
select = B,C,E,F,W,T4,B9
[yapf]
based_on_style = google
column_limit=100
dedent_closing_brackets = true
join_multiple_lines = false
spaces_before_comment = 4
split_arguments_when_comma_terminated = true
split_before_first_argument = true
split_before_logical_operator = true
split_before_arithmetic_operator=true
split_before_named_assigns = true
[isort]
known_first_party=provenance
known_third_party=alembic,boltons,cloudpickle,conftest,frozendict,google,graphviz,hypothesis,joblib,memoized_property,numpy,pandas,paramiko,psutil,pytest,s3fs,setuptools,sqlalchemy,sqlalchemy_utils,strategies,toolz,wrapt
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
combine_as_imports=True
line_length=100
skip=
docs/source/conf.py
setup.py