|
78 | 78 | ])
|
79 | 79 |
|
80 | 80 | long_description = """
|
81 |
| -This package is a fork of the CPython 2.7 and 3.5 `ast` modules with the |
82 |
| -ability to parse PEP 484 (https://www.python.org/dev/peps/pep-0484/) type |
83 |
| -comments. The primary goals of this package are correctness and speed. |
| 81 | +`typed_ast` is a Python 3 package that provides a Python 2.7 and Python 3 |
| 82 | +parser similar to the standard `ast` library. Unlike `ast`, the parsers in |
| 83 | +`typed_ast` include PEP 484 type comments and are independent of the version of |
| 84 | +Python under which they are run. The `typed_ast` parsers produce the standard |
| 85 | +Python AST (plus type comments), and are both fast and correct, as they are |
| 86 | +based on the CPython 2.7 and 3.6 parsers. |
84 | 87 | """.strip()
|
85 | 88 |
|
86 | 89 | setup (name = 'typed-ast',
|
87 |
| - version = '0.6.3', |
88 |
| - description = 'fork of Python 2 and 3 ast modules with type comment support', |
| 90 | + version = '1.0.0', |
| 91 | + description = 'a fork of Python 2 and 3 ast modules with type comment support', |
89 | 92 | long_description = long_description,
|
90 | 93 | author = 'David Fisher',
|
91 | 94 | author_email = 'ddfisher@dropbox.com',
|
92 | 95 | url = 'https://github.com/python/typed_ast',
|
93 | 96 | license='Apache License 2.0',
|
94 | 97 | platforms = ['POSIX', 'Windows'],
|
95 | 98 | classifiers = [
|
96 |
| - 'Development Status :: 4 - Beta', |
| 99 | + 'Development Status :: 5 - Production/Stable', |
97 | 100 | 'Environment :: Console',
|
98 | 101 | 'Intended Audience :: Developers',
|
99 | 102 | 'Operating System :: POSIX',
|
|
0 commit comments