summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: beca4a176d5138fcf60a868d1722be85547098f3 (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
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
[metadata]
name = astroid
version = attr: astroid.__version__
description = An abstract syntax tree for Python with inference support.
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 = code-quality@python.org
license = LGPL-2.1-or-later
license_files = LICENSE
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 :: 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,<1.13
    typed-ast>=1.4.0,<1.5;implementation_name=="cpython" and python_version<"3.8"
setup_requires =
  setuptools_scm
python_requires = ~=3.6

[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