antlr/runtime/Python2/setup.py

14 lines
434 B
Python
Raw Normal View History

2015-06-26 03:25:42 +08:00
from distutils.core import setup
setup(
name='antlr4-python2-runtime',
2017-12-09 04:47:11 +08:00
version='4.7.1',
2015-06-26 03:25:42 +08:00
packages=['antlr4', 'antlr4.atn', 'antlr4.dfa', 'antlr4.tree', 'antlr4.error', 'antlr4.xpath'],
package_dir={'': 'src'},
url='http://www.antlr.org',
license='BSD',
author='Eric Vergnaud, Terence Parr, Sam Harwell',
author_email='eric.vergnaud@wanadoo.fr',
2017-12-09 04:47:11 +08:00
description='ANTLR 4.7.1 runtime for Python 2.7.6'
2015-06-26 03:25:42 +08:00
)