'This is setup.py file for typed-astunparse.'
import setup_boilerplate
class Package(setup_boilerplate.Package):
'Package metadata.'
name = 'typed-astunparse'
description = 'typed-astunparse is to typed-ast as astunparse is to ast'
download_url = 'https://github.com/mbdevpl/typed-astunparse'
classifiers = ['Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: Implementation :: CPython', 'Topic :: Education', 'Topic :: Scientific/Engineering', 'Topic :: Software Development :: Code Generators', 'Topic :: Software Development :: Compilers', 'Topic :: Software Development :: Pre-processors', 'Topic :: Utilities']
keywords = ['ast', 'unparsing', 'pretty printing']
if (__name__ == '__main__'):
Package.setup()