-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.cfg
95 lines (85 loc) · 1.96 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[metadata]
name = retype
description = re-apply types from .pyi stub files to your codebase
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ambv/retype
author_email = [email protected]
license = MIT
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Quality Assurance
keywords = mypy typing typehints type hints pep484 pyi stubs
project_urls =
Source=https://github.com/ambv/retype
Tracker=https://github.com/ambv/retype/issues
[options]
packages = find:
install_requires =
click>=7
pathspec>=0.5.9,<1
typed-ast>=1.3
python_requires = >=3.7
package_dir =
=src
zip_safe = False
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
retype=retype.__main__:main
[options.extras_require]
test =
covdefaults>=2
pytest>=6
pytest-cov>=3
[flake8]
ignore =
E501,
E502,
W503,
E225,
E302,
E203,
E800,
E741,
max-line-length = 88
max-complexity = 32
select = B,C,E,F,T4,W,B9
noqa-require-code = true
[coverage:run]
plugins = covdefaults
parallel = true
[coverage:paths]
src =
src
.tox/*/lib/python*/site-packages
.tox/pypy*/site-packages
.tox\*\Lib\site-packages\
*/src
*\src
other =
.
*/retype
*\retype
[coverage:report]
fail_under = 88
[coverage:html]
show_contexts = true
skip_covered = false
[coverage:covdefaults]
subtract_omit = */.tox/*