antlr/runtime/Python2/setup.py

14 lines
431 B
Python
Raw Normal View History

from setuptools import setup
2015-06-26 03:25:42 +08:00
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
url='http://www.antlr.org',
license='BSD',
packages=['antlr4', 'antlr4.atn', 'antlr4.dfa', 'antlr4.tree', 'antlr4.error', 'antlr4.xpath'],
package_dir={'': 'src'},
2015-06-26 03:25:42 +08:00
author='Eric Vergnaud, Terence Parr, Sam Harwell',
author_email='eric.vergnaud@wanadoo.fr',
description='ANTLR 4.7.1 runtime for Python 2.7.12'
2015-06-26 03:25:42 +08:00
)