summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-04-23 12:06:06 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-23 20:56:24 +0200
commita82c18c456c8ad234fa007a5bea46417d34f1897 (patch)
tree7ae4679838b05dc2f0dfe7390d1212250fc09bf6 /setup.cfg
parent7e131abecce42f5aa3c5f7b9e2e7b911bb79fc57 (diff)
downloadastroid-git-a82c18c456c8ad234fa007a5bea46417d34f1897.tar.gz
Update packaging 1 - use setup.cfg
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg43
1 files changed, 43 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 9036261b..4a709ce3 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,8 +1,51 @@
+[metadata]
+name = astroid
+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
+ 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/kFebW799
+ "Mailing list" = mailto:code-quality@python.org
+
+[options]
+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"
+python_requires = ~=3.6
+
[aliases]
test = pytest
[tool:pytest]
testpaths = tests
+python_files = *test_*.py
+addopts = -m "not acceptance"
[isort]
multi_line_output = 3