forked from cta-observatory/ctapipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
52 lines (41 loc) · 978 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
49
50
51
52
[build_sphinx]
source-dir = docs
build-dir = docs/_build
all_files = 1
[upload_docs]
upload-dir = docs/_build/html
show-response = 1
[tool:pytest]
minversion=3.0
norecursedirs=build docs/_build
addopts = -v
[aliases]
test=pytest
[metadata]
package_name = ctapipe
description = CTA Python pipeline experimental version
author = ctapipe developers
author_email = karl.kosack@cea.fr
license = BSD3
url = https://github.com/cta-observatory/ctapipe
edit_on_github = False
github_project = cta-observatory/ctapipe
[pep8]
exclude=astropy_helpers,ah_bootstrap.py,ez_setup.py,build,examples/brainstorm,docs
max-line-length=90
ignore=W291,E303,W391,F403,F401,W503,W1202,E402
[flake8]
exclude=
astropy_helpers,
ah_bootstrap.py,
ez_setup.py,
build,
examples/brainstorm,
docs
max-line-length=90
ignore=W291,E303,W391,F403,F401,W503,W1202
[yapf] # a code reformatter
based_on_style: pep8
dedent_closing_brackets: true
coalesce_brackets: true
join_multiple_lines: true