Metadata-Version: 2.0
Name: static-typing
Version: 0.1.1
Summary: add static type information to Python abstract syntax trees
Home-page: https://mbdevpl.github.io/
Author: Mateusz Bysiek
Author-email: mb@mbdev.pl
License: Apache License 2.0
Download-URL: https://github.com/mbdevpl/static-typing
Description-Content-Type: UNKNOWN
Keywords: ast,parser,parsing,static type information,type analysis,types,typing
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Education
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Requires-Python: >=3.4
Requires-Dist: numpy
Requires-Dist: ordered-set
Requires-Dist: typed-ast
Requires-Dist: version-query
Requires-Dist: typing (>=3.5); python_version < "3.5"

.. role:: python(code)
    :language: python


static-typing
=============

.. image:: https://img.shields.io/pypi/v/static-typing.svg
    :target: https://pypi.python.org/pypi/static-typing
    :alt: package version from PyPI

.. image:: https://travis-ci.org/mbdevpl/static-typing.svg?branch=master
    :target: https://travis-ci.org/mbdevpl/static-typing
    :alt: build status from Travis CI

.. image:: https://ci.appveyor.com/api/projects/status/github/mbdevpl/static-typing?branch=master&svg=true
    :target: https://ci.appveyor.com/project/mbdevpl/static-typing
    :alt: build status from AppVeyor

.. image:: https://api.codacy.com/project/badge/Grade/c10705787cbf4ebeafa95d18459fd690
    :target: https://www.codacy.com/app/mbdevpl/static-typing
    :alt: grade from Codacy

.. image:: https://codecov.io/gh/mbdevpl/static-typing/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/mbdevpl/static-typing
    :alt: test coverage from Codecov

.. image:: https://img.shields.io/pypi/l/static-typing.svg
    :target: https://github.com/mbdevpl/static-typing/blob/master/NOTICE
    :alt: license

Attempt to add static type information to Python abstract syntax trees.

Extends parser from ``typed_ast`` module.

requirements
------------

Python version >= 3.4.

Python libraries as specified in `<requirements.txt>`_.

Building and running tests additionally requires packages listed in `<test_requirements.txt>`_.

Tested on Linux and Windows.


