Commit b06e1c83 authored by Igor Dejanovic's avatar Igor Dejanovic

Version bump. Preparing for release on PyPI.

parent 2fe9230c
Changelog for Arpeggio Changelog for Arpeggio
====================== ======================
Development version (on master branch) 2014-08-16 Release 0.7
- Parse tree navigation
- Better semantic action debugging output. - Better semantic action debugging output.
- Tests reorganization and cleanup. - Tests reorganization and cleanup.
- Examples cleanup. - Examples cleanup.
......
[metadata]
description-file = README.md
...@@ -7,12 +7,12 @@ ...@@ -7,12 +7,12 @@
# Copyright: (c) 2009 Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com> # Copyright: (c) 2009 Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>
# License: MIT License # License: MIT License
# #
# Arpeggio is implementation of packrat parser interpreter based on PEG grammars. # Arpeggio is an implementation of packrat parser interpreter based on PEG grammars.
# Parsers are defined using python language construction or PEG language. # Parsers are defined using python language construction or PEG language.
############################################################################### ###############################################################################
__author__ = "Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>" __author__ = "Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>"
__version__ = "0.7-dev" __version__ = "0.7"
from setuptools import setup from setuptools import setup
...@@ -21,8 +21,9 @@ VERSION = __version__ ...@@ -21,8 +21,9 @@ VERSION = __version__
DESC = 'Packrat parser interpreter' DESC = 'Packrat parser interpreter'
AUTHOR = 'Igor R. Dejanovic' AUTHOR = 'Igor R. Dejanovic'
AUTHOR_EMAIL = 'igor DOT dejanovic AT gmail DOT com' AUTHOR_EMAIL = 'igor DOT dejanovic AT gmail DOT com'
LICENCE = 'MIT' LICENSE = 'MIT'
URL = 'https://github.com/igordejanovic/arpeggio' URL = 'https://github.com/igordejanovic/Arpeggio'
DOWNLOAD_URL = 'https://github.com/igordejanovic/Arpeggio/tarball/v0.7.0'
setup( setup(
name = NAME, name = NAME,
...@@ -32,7 +33,7 @@ setup( ...@@ -32,7 +33,7 @@ setup(
author_email = AUTHOR_EMAIL, author_email = AUTHOR_EMAIL,
maintainer = AUTHOR, maintainer = AUTHOR,
maintainer_email = AUTHOR_EMAIL, maintainer_email = AUTHOR_EMAIL,
license = LICENCE, license = LICENSE,
url = URL, url = URL,
packages = ["arpeggio"], packages = ["arpeggio"],
keywords = "parser packrat peg", keywords = "parser packrat peg",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment