blob: 46d6ec340b59bcf266a7987dee55fbebd8c68eee (
plain)
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
|
[build-system]
requires = ['setuptools', 'wheel']
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.coverage.html]
directory = 'test-reports'
[tool.coverage.run]
branch = true
source = ['requests_cache']
omit = [
'requests_cache/__init__.py',
'requests_cache/backends/__init__.py',
]
[tool.isort]
profile = "black"
line_length = 100
skip_gitignore = true
skip = ['examples/', 'requests_cache/__init__.py']
known_first_party = ['test']
# Things that are common enough they may as well be grouped with stdlib imports
extra_standard_library = ['pytest', 'setuptools']
|