forked from cta-observatory/ctapipe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
54 lines (44 loc) · 985 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
53
54
[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]
name = ctapipe
description = CTA Python pipeline experimental version
long_description = file: README.rst
author = ctapipe developers
author_email = [email protected]
license = BSD 3-Clause License
url = https://github.com/cta-observatory/ctapipe
edit_on_github = False
github_project = cta-observatory/ctapipe
[flake8]
exclude=
build,
docs,
.eggs
max-line-length=90
#ignore=W291,E303,W391,F403,F401,W503,W1202
select = C,E,F,W,B,B950
ignore = E501,W503,E203
per-file-ignores =
*/__init__.py: F401, F403
[pycodestyle]
count = False
ignore = E501,W503,E203
max-line-length = 90
statistics = True
[yapf] # a code reformatter
based_on_style: pep8
dedent_closing_brackets: true
coalesce_brackets: true
join_multiple_lines: true