forked from pymoca/pymoca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
50 lines (45 loc) · 1.09 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
[metadata]
license_file = LICENSE
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
[versioneer]
VCS = git
style = pep440
versionfile_source = src/pymoca/_version.py
versionfile_build = pymoca/_version.py
tag_prefix =
parentdir_prefix = pymoca-
[flake8]
#ignore = D203
max-line-length = 99
exclude =
# misc
.git,
.tox,
docs/source/conf.py,
# generated files
__pycache__,
build,
dist,
test/generated,
src/pymoca/generated,
src/pymoca/_version.py,
versioneer.py,
# TODO files with known flake8 issues
# remove these ignores once they are fixed
test/gen_sympy_test.py,
test/gen_casadi_test.py,
test/parse_test.py,
src/pymoca/backends/casadi/model.py,
src/pymoca/backends/casadi/generator.py,
src/pymoca/backends/casadi/api.py,
src/pymoca/backends/casadi/alias_relation.py,
src/pymoca/backends/sympy/generator.py,
src/pymoca/backends/sympy/runtime.py,
src/pymoca/tree.py,
src/pymoca/ast.py,
src/pymoca/ast.py,
src/pymoca/parser.py,
tools/compiler.py,
max-complexity = 10