forked from antlr/antlr4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
13 lines (12 loc) · 430 Bytes
/
setup.py
File metadata and controls
13 lines (12 loc) · 430 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
from distutils.core import setup
setup(
name='antlr4-python3-runtime',
version='4.7',
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',
description='ANTLR 4.7 runtime for Python 3.4.0'
)