Skip to content

Commit

Permalink
prepare v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tintinweb committed Mar 6, 2019
1 parent b6a9602 commit ceca7d1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


version = "0.0.1"
version = "0.0.2"
name = "solidity-parser"

setup(
Expand All @@ -39,4 +39,4 @@ def read(fname):
install_requires=["antlr4-python3-runtime"],
#test_suite="nose.collector",
#tests_require=["nose"],
)
)
4 changes: 2 additions & 2 deletions solidity_parser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .parser import parse_file, parse
__ALL__ = ["parse","parse_file"]
from .parser import parse_file, parse, objectify
__ALL__ = ["parse","parse_file","objectify"]
2 changes: 1 addition & 1 deletion solidity_parser/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# -*- coding: utf-8 -*-

import sys
import parser
import pprint
from . import parser

if __name__ == "__main__":
if not len(sys.argv)>2 or sys.argv[1] not in ("parse","outline"):
Expand Down

0 comments on commit ceca7d1

Please sign in to comment.