forked from pylint-dev/astroid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
97 lines (83 loc) · 2.56 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
96
97
[metadata]
name = astroid
description = An abstract syntax tree for Python with inference support.
version = attr: astroid.__pkginfo__.__version__
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/PyCQA/astroid
author = Python Code Quality Authority
author_email = [email protected]
license = LGPL-2.1-or-later
license_files =
LICENSE
CONTRIBUTORS.txt
classifiers =
Development Status :: 6 - Mature
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
keywords = static code analysis,python,abstract syntax tree
project_urls =
Bug tracker = https://github.com/PyCQA/astroid/issues
Discord server = https://discord.gg/Egy6P8AMB5
[options]
packages = find:
install_requires =
lazy_object_proxy>=1.4.0
wrapt>=1.11,<2
setuptools>=20.0
typed-ast>=1.4.0,<2.0;implementation_name=="cpython" and python_version<"3.8"
typing-extensions>=3.10;python_version<"3.10"
python_requires = >=3.6.2
[options.packages.find]
include =
astroid*
[aliases]
test = pytest
[tool:pytest]
testpaths = tests
python_files = *test_*.py
addopts = -m "not acceptance"
[isort]
multi_line_output = 3
line_length = 88
known_third_party = sphinx, pytest, six, nose, numpy, attr
known_first_party = astroid
include_trailing_comma = True
skip_glob = tests/testdata
[mypy]
scripts_are_modules = True
no_implicit_optional = True
warn_redundant_casts = True
show_error_codes = True
enable_error_code = ignore-without-code
[mypy-setuptools]
ignore_missing_imports = True
[mypy-pytest]
ignore_missing_imports = True
[mypy-nose.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-_io.*]
ignore_missing_imports = True
[mypy-wrapt.*]
ignore_missing_imports = True
[mypy-lazy_object_proxy.*]
ignore_missing_imports = True
[mypy-gi.*]
ignore_missing_imports = True