-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
62 lines (56 loc) · 1.44 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
51
52
53
54
55
56
57
58
59
60
[metadata]
name = ima_vae
version = 0.1.0
author = Patrik Reizinger, Luigi Gresele, Jack Brady, Dominik Zietlow, Julius von Kügelgen, Bernhard Schölkopf, Georg Martius, Wieland Brendel, Michel Besserve
author_email = [email protected]
description = Embrace the Gap: VAEs perform Independent Mechanism Analysis
license_file = LICENSE
description-file = README.md
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/rpatrik96/ima-vae
project_urls =
Bug Tracker = https://github.com/rpatrik96/ima-vae
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[tool:pytest]
norecursedirs =
.git
dist
build
addopts =
--strict
--doctest-modules
--durations=0
[coverage:report]
exclude_lines =
pragma: no-cover
pass
[flake8]
max-line-length = 120
exclude = .tox,*.egg,build,temp,ima
select = E,W,F
doctests = True
verbose = 2
# https://pep8.readthedocs.io/en/latest/intro.html#error-codes
format = pylint
# see: https://www.flake8rules.com/
ignore =
E731
# Do not assign a lambda expression, use a def
W504
# Line break occurred after a binary operator
F401
# Module imported but unused
F841
# Local variable name is assigned to but never used
W605
# Invalid escape sequence 'x'
# setup.cfg or tox.ini
[check-manifest]
ignore =
*.yml
.github
.github/*