forked from globus/globus-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
36 lines (27 loc) · 784 Bytes
/
setup.cfg
File metadata and controls
36 lines (27 loc) · 784 Bytes
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
[isort]
profile = black
known_first_party = tests, globus_sdk
[flake8]
exclude = .git,.tox,__pycache__,.eggs,dist,venv,.venv*,venv27,virtualenv,docs,docs-source,build
# we enforce 80 char width with `black` "loosely", so flake8 should be set to
# not fail on up to 88 chars of width
max-line-length = 88
extend-ignore = W503,W504,E203
[mypy]
strict = true
warn_unreachable = true
warn_no_return = true
[tool:pytest]
testpaths = tests
norecursedirs = tests/non-pytest
filterwarnings =
# warnings are errors, like -Werror
error
[scriv]
version = literal: src/globus_sdk/version.py: __version__
format = rst
output_file = changelog.rst
entry_title_template = v{{ version }} ({{ date.strftime("%%Y-%%m-%%d") }})
rst_header_chars = -~
# no categories (empty)
categories =