8000 Release version 1.0.0 · python/typed_ast@a230ec7 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Jul 5, 2023. It is now read-only.

Commit a230ec7

Browse files
committed
Release version 1.0.0
1 parent 7c87a7d commit a230ec7

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

setup.py

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,22 +78,25 @@
7878
])
7979

8080
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.
8487
""".strip()
8588

8689
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',
8992
long_description = long_description,
9093
author = 'David Fisher',
9194
author_email = 'ddfisher@dropbox.com',
9295
url = 'https://github.com/python/typed_ast',
9396
license='Apache License 2.0',
9497
platforms = ['POSIX', 'Windows'],
9598
classifiers = [
96-
'Development Status :: 4 - Beta',
99+
'Development Status :: 5 - Production/Stable',
97100
'Environment :: Console',
98101
'Intended Audience :: Developers',
99102
'Operating System :: POSIX',

0 commit comments

Comments
 (0)
0