forked from Instagram/MonkeyType
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
90 lines (77 loc) · 1.77 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
[metadata]
name = MonkeyType
version = 23.3.1.dev1
description = Generating type annotations from sampled production types
long_description = file: README.rst, CHANGES.rst
long_description_content_type = text/x-rst
license = BSD
author = Matt Page
author_email = [email protected]
url = https://github.com/Instagram/MonkeyType
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
packages = find:
include-package-data = True
python_requires = >= 3.7
install_requires =
mypy_extensions
libcst>=0.4.4
[options.packages.find]
exclude =
tests.*
tests
[options.package_data]
monkeytype = py.typed
[options.extras_require]
dev =
black
isort
flake8
pytest
mypy
sphinx
twine
tox
libcst
importlib_metadata
[options.entry_points]
console_scripts =
monkeytype = monkeytype.cli:entry_point_main
[isort]
profile = black
[flake8]
max-line-length = 120
extend-ignore =
# E203 whitespace before ':'
# https://github.com/psf/black/issues/315
E203
per-file-ignores =
tests/test_stubs.py:F821
tests/test_typing.py:F821
[mypy]
python_version = 3.7
platform = linux
show_column_numbers = True
show_error_codes = True
follow_imports = normal
strict = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-parser.*]
ignore_missing_imports = True
[mypy-django.*]
ignore_missing_imports = True
[tool:black]
line-length = 80
[tool:pytest]
addopts = --tb short