forked from jasder/antlr
PyPI version
This commit is contained in:
parent
4f6ce6bc05
commit
489b48e3bc
|
@ -1,23 +1,5 @@
|
|||
__pycache__
|
||||
*.pyc
|
||||
src/TestAntLR.py
|
||||
|
||||
.idea/.name
|
||||
|
||||
.idea/antlr4-python3.iml
|
||||
|
||||
.idea/encodings.xml
|
||||
|
||||
.idea/inspectionProfiles/profiles_settings.xml
|
||||
|
||||
.idea/misc.xml
|
||||
|
||||
.idea/scopes/scope_settings.xml
|
||||
|
||||
.idea/modules.xml
|
||||
|
||||
.idea/inspectionProfiles/Project_Default.xml
|
||||
|
||||
.idea/vcs.xml
|
||||
|
||||
.idea/workspace.xml
|
||||
.idea/*
|
||||
dist
|
|
@ -0,0 +1,57 @@
|
|||
# file GENERATED by distutils, do NOT edit
|
||||
README.txt
|
||||
setup.py
|
||||
src/antlr4/BufferedTokenStream.py
|
||||
src/antlr4/CommonTokenFactory.py
|
||||
src/antlr4/CommonTokenStream.py
|
||||
src/antlr4/FileStream.py
|
||||
src/antlr4/InputStream.py
|
||||
src/antlr4/IntervalSet.py
|
||||
src/antlr4/LL1Analyzer.py
|
||||
src/antlr4/Lexer.py
|
||||
src/antlr4/ListTokenSource.py
|
||||
src/antlr4/Parser.py
|
||||
src/antlr4/ParserInterpreter.py
|
||||
src/antlr4/ParserRuleContext.py
|
||||
src/antlr4/PredictionContext.py
|
||||
src/antlr4/Recognizer.py
|
||||
src/antlr4/RuleContext.py
|
||||
src/antlr4/Token.py
|
||||
src/antlr4/Utils.py
|
||||
src/antlr4/__init__.py
|
||||
src/antlr4/atn/ATN.py
|
||||
src/antlr4/atn/ATNConfig.py
|
||||
src/antlr4/atn/ATNConfigSet.py
|
||||
src/antlr4/atn/ATNDeserializationOptions.py
|
||||
src/antlr4/atn/ATNDeserializer.py
|
||||
src/antlr4/atn/ATNSimulator.py
|
||||
src/antlr4/atn/ATNState.py
|
||||
src/antlr4/atn/ATNType.py
|
||||
src/antlr4/atn/LexerATNSimulator.py
|
||||
src/antlr4/atn/LexerAction.py
|
||||
src/antlr4/atn/LexerActionExecutor.py
|
||||
src/antlr4/atn/ParserATNSimulator.py
|
||||
src/antlr4/atn/PredictionMode.py
|
||||
src/antlr4/atn/SemanticContext.py
|
||||
src/antlr4/atn/Transition.py
|
||||
src/antlr4/atn/__init__.py
|
||||
src/antlr4/dfa/DFA.py
|
||||
src/antlr4/dfa/DFASerializer.py
|
||||
src/antlr4/dfa/DFAState.py
|
||||
src/antlr4/dfa/__init__.py
|
||||
src/antlr4/error/DiagnosticErrorListener.py
|
||||
src/antlr4/error/ErrorListener.py
|
||||
src/antlr4/error/ErrorStrategy.py
|
||||
src/antlr4/error/Errors.py
|
||||
src/antlr4/error/__init__.py
|
||||
src/antlr4/tree/Chunk.py
|
||||
src/antlr4/tree/ParseTreeMatch.py
|
||||
src/antlr4/tree/ParseTreePattern.py
|
||||
src/antlr4/tree/ParseTreePatternMatcher.py
|
||||
src/antlr4/tree/RuleTagToken.py
|
||||
src/antlr4/tree/TokenTagToken.py
|
||||
src/antlr4/tree/Tree.py
|
||||
src/antlr4/tree/Trees.py
|
||||
src/antlr4/tree/__init__.py
|
||||
src/antlr4/xpath/XPath.py
|
||||
src/antlr4/xpath/__init__.py
|
|
@ -0,0 +1 @@
|
|||
include *.txt
|
|
@ -0,0 +1,3 @@
|
|||
This is the Python 3.4 runtime for AntLR.
|
||||
Visit the AntLR web site for more information:
|
||||
http://www.antlr.org
|
4
setup.py
4
setup.py
|
@ -2,12 +2,12 @@ from distutils.core import setup
|
|||
|
||||
setup(
|
||||
name='antlr4-python3-runtime',
|
||||
version='4.2.0',
|
||||
version='4.4.0',
|
||||
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@test',
|
||||
description='AntLR 4.2.0 runtime for Python 3.4.0'
|
||||
description='AntLR 4.4.0 runtime for Python 3.4.0'
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue