102 lines
3.2 KiB
Text
102 lines
3.2 KiB
Text
Metadata-Version: 2.1
|
|
Name: astroid
|
|
Version: 2.1.0
|
|
Summary: An abstract syntax tree for Python with inference support.
|
|
Home-page: https://github.com/PyCQA/astroid
|
|
Author: Python Code Quality Authority
|
|
Author-email: code-quality@python.org
|
|
License: LGPL
|
|
Platform: UNKNOWN
|
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
Classifier: Topic :: Software Development :: Quality Assurance
|
|
Classifier: Programming Language :: Python
|
|
Classifier: Programming Language :: Python :: 3
|
|
Classifier: Programming Language :: Python :: 3.4
|
|
Classifier: Programming Language :: Python :: 3.5
|
|
Classifier: Programming Language :: Python :: 3.6
|
|
Classifier: Programming Language :: Python :: 3.7
|
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
Requires-Python: >=3.4.*
|
|
Requires-Dist: lazy-object-proxy
|
|
Requires-Dist: six
|
|
Requires-Dist: wrapt
|
|
Requires-Dist: typing ; python_version < "3.5"
|
|
Requires-Dist: typed-ast ; python_version < "3.7" and implementation_name == "cpython"
|
|
|
|
Astroid
|
|
=======
|
|
|
|
.. image:: https://travis-ci.org/PyCQA/astroid.svg?branch=master
|
|
:target: https://travis-ci.org/PyCQA/astroid
|
|
|
|
.. image:: https://ci.appveyor.com/api/projects/status/co3u42kunguhbh6l/branch/master?svg=true
|
|
:alt: AppVeyor Build Status
|
|
:target: https://ci.appveyor.com/project/PCManticore/astroid
|
|
|
|
.. image:: https://coveralls.io/repos/github/PyCQA/astroid/badge.svg?branch=master
|
|
:target: https://coveralls.io/github/PyCQA/astroid?branch=master
|
|
|
|
.. image:: https://readthedocs.org/projects/astroid/badge/?version=latest
|
|
:target: http://astroid.readthedocs.io/en/latest/?badge=latest
|
|
:alt: Documentation Status
|
|
|
|
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
|
|
:target: https://github.com/ambv/black
|
|
|
|
|
|
|
|
What's this?
|
|
------------
|
|
|
|
The aim of this module is to provide a common base representation of
|
|
python source code. It is currently the library powering pylint's capabilities.
|
|
|
|
It provides a compatible representation which comes from the `_ast`
|
|
module. It rebuilds the tree generated by the builtin _ast module by
|
|
recursively walking down the AST and building an extended ast. The new
|
|
node classes have additional methods and attributes for different
|
|
usages. They include some support for static inference and local name
|
|
scopes. Furthermore, astroid can also build partial trees by inspecting living
|
|
objects.
|
|
|
|
|
|
Installation
|
|
------------
|
|
|
|
Extract the tarball, jump into the created directory and run::
|
|
|
|
pip install .
|
|
|
|
|
|
If you want to do an editable installation, you can run::
|
|
|
|
pip install -e .
|
|
|
|
|
|
If you have any questions, please mail the code-quality@python.org
|
|
mailing list for support. See
|
|
http://mail.python.org/mailman/listinfo/code-quality for subscription
|
|
information and archives.
|
|
|
|
Documentation
|
|
-------------
|
|
http://astroid.readthedocs.io/en/latest/
|
|
|
|
|
|
Python Versions
|
|
---------------
|
|
|
|
astroid 2.0 is currently available for Python 3 only. If you want Python 2
|
|
support, older versions of astroid will still supported until 2020.
|
|
|
|
Test
|
|
----
|
|
|
|
Tests are in the 'test' subdirectory. To launch the whole tests suite, you can use
|
|
either `tox` or `pytest`::
|
|
|
|
tox
|
|
pytest astroid
|
|
|
|
|