|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools~=62.6", "wheel~=0.37.1"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "astroid" |
| 7 | +license = {text = "LGPL-2.1-or-later"} |
| 8 | +description = "An abstract syntax tree for Python with inference support." |
| 9 | +readme = "README.rst" |
| 10 | +authors = [ |
| 11 | + { name = "Python Code Quality Authority", email = "[email protected]"} |
| 12 | +] |
| 13 | +keywords = ["static code analysis", "python", "abstract syntax tree"] |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 6 - Mature", |
| 16 | + "Environment :: Console", |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)", |
| 19 | + "Operating System :: OS Independent", |
| 20 | + "Programming Language :: Python", |
| 21 | + "Programming Language :: Python :: 3", |
| 22 | + "Programming Language :: Python :: 3 :: Only", |
| 23 | + "Programming Language :: Python :: 3.7", |
| 24 | + "Programming Language :: Python :: 3.8", |
| 25 | + "Programming Language :: Python :: 3.9", |
| 26 | + "Programming Language :: Python :: 3.10", |
| 27 | + "Programming Language :: Python :: Implementation :: CPython", |
| 28 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 29 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 30 | + "Topic :: Software Development :: Quality Assurance", |
| 31 | + "Topic :: Software Development :: Testing", |
| 32 | +] |
| 33 | +requires-python = ">=3.7.2" |
| 34 | +dependencies = [ |
| 35 | + "lazy_object_proxy>=1.4.0", |
| 36 | + "wrapt>=1.11,<2", |
| 37 | + "typed-ast>=1.4.0,<2.0;implementation_name=='cpython' and python_version<'3.8'", |
| 38 | + "typing-extensions>=3.10;python_version<'3.10'", |
| 39 | +] |
| 40 | +dynamic = ["version"] |
| 41 | + |
| 42 | +[project.urls] |
| 43 | +"Docs" = "https://pylint.pycqa.org/projects/astroid/en/latest/" |
| 44 | +"Source Code" = "https://github.com/PyCQA/astroid" |
| 45 | +"Bug tracker" = "https://github.com/PyCQA/astroid/issues" |
| 46 | +"Discord server" = "https://discord.gg/Egy6P8AMB5" |
| 47 | + |
| 48 | +[tool.setuptools] |
| 49 | +license-files = ["LICENSE", "CONTRIBUTORS.txt"] # Keep in sync with setup.cfg |
| 50 | + |
| 51 | +[tool.setuptools.packages.find] |
| 52 | +include = ["astroid*"] |
| 53 | + |
| 54 | +[tool.setuptools.dynamic] |
| 55 | +version = {attr = "astroid.__pkginfo__.__version__"} |
0 commit comments