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

Add dev status inactive classifier, edit long description #196

Merged
merged 2 commits into from Jul 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 15 additions & 1 deletion setup.py
Expand Up @@ -82,6 +82,19 @@
])

long_description = """
===========
End of life
===========

This project is no longer maintained.

Use the standard library `ast` module instead.
See https://github.com/python/typed_ast/issues/179.

===========
Description
===========

`typed_ast` is a Python 3 package that provides a Python 2.7 and Python 3
parser similar to the standard `ast` library. Unlike `ast` below Python 3.8,
the parsers in
Expand Down Expand Up @@ -111,7 +124,7 @@
license='Apache License 2.0',
platforms = ['POSIX', 'Windows'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Development Status :: 7 - Inactive',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: POSIX',
Expand All @@ -121,6 +134,7 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development',
],
python_requires=">=3.6",
Expand Down