-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.cfg
49 lines (41 loc) · 1.05 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
[bumpversion]
current_version = 0.0.1
commit = True
tag = True
[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:adijif/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bdist_wheel]
universal = 1
[flake8]
import-order-style = google
docstring-convention = google
application-import-names = adijif,tests
select = ANN,B,B9,BLK,C,D,DAR,E,F,I,S,W
ignore = E203,E501,W503,E722,S101,ANN101,I100,I101
exclude = docs,*_bf.py
max-line-length = 80
per-file-ignores =
*/__init__.py: F401
*/system.py: F401,E722
*/fpgas/xilinx.py: E722
*/tests/test_bf.py: E722
*/tests/*:S101,ANN
noxfile.py:ANN
*/converters/adrv9009.py: B950
*/converters/ad9081.py: BLK100, E741
*/fpgas/xilinx.py: B950
*/system.py: S307
*/fpgas/xilinx.py: BLK100
*/__init__.py: BLK100
[aliases]
# Define setup.py command aliases here
test = pytest
[tool:pytest]
collect_ignore = ['setup.py']
[tool:isort]
profile = black
skip_glob=*/gekko_trans.py