-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
57 lines (49 loc) · 1.27 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
[metadata]
name = sort_all
version = 1.3.0
description = Automatically Sort __all__ records alphabetically
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/aio-libs/sort-all
author = Andrew Svetlov
author_email = [email protected]
license = Apache-2.0
license_files = LICENSE
classifiers =
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
[options]
py_modules = sort_all
install_requires =
tokenize-rt>=3.0.1
python_requires = >=3.9
[options.entry_points]
console_scripts =
sort-all = sort_all:main
[flake8]
exclude = .git,.env,__pycache__,.eggs
max-line-length = 88
ignore = N801,N802,N803,E252,W503,E133,E203,F541
[isort]
profile = black
[tool:pytest]
addopts = --cov=sort_all
testpaths = tests/
junit_suite_name = sort_all_test_suite
junit_family = xunit2
[mypy]
check_untyped_defs = True
disallow_any_generics = True
disallow_untyped_defs = True
follow_imports = silent
strict_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_unused_configs = True
disallow_incomplete_defs = True
no_implicit_optional = True
[mypy-testing.*]
disallow_untyped_defs = false
[mypy-tests.*]
disallow_untyped_defs = false