2017-12-11 04:28:05 +08:00
|
|
|
from setuptools import setup
|
2015-06-26 03:25:42 +08:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='antlr4-python2-runtime',
|
2021-03-12 06:10:44 +08:00
|
|
|
version='4.9.2',
|
2015-06-26 03:25:42 +08:00
|
|
|
url='http://www.antlr.org',
|
|
|
|
license='BSD',
|
2017-12-11 04:28:05 +08:00
|
|
|
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',
|
2021-03-12 06:10:44 +08:00
|
|
|
description='ANTLR 4.9.2 runtime for Python 2.7.12'
|
2015-06-26 03:25:42 +08:00
|
|
|
)
|