Commit 65214ea4 authored by Igor Dejanovic's avatar Igor Dejanovic

Fixing setup.py

parent a919336c
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# Name: arpeggio.py # Name: arpeggio.py
# Purpose: PEG parser interpreter # Purpose: PEG parser interpreter
# Author: Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com> # Author: Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>
# Copyright: (c) 2009 Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com> # Copyright: (c) 2009-2014 Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>
# License: MIT License # License: MIT License
# #
# Arpeggio is an implementation of packrat parser interpreter based on PEG grammars. # Arpeggio is an implementation of packrat parser interpreter based on PEG grammars.
...@@ -23,7 +23,7 @@ AUTHOR = 'Igor R. Dejanovic' ...@@ -23,7 +23,7 @@ AUTHOR = 'Igor R. Dejanovic'
AUTHOR_EMAIL = 'igor DOT dejanovic AT gmail DOT com' AUTHOR_EMAIL = 'igor DOT dejanovic AT gmail DOT com'
LICENSE = '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' DOWNLOAD_URL = 'https://github.com/igordejanovic/Arpeggio/archive/v0.7.tar.gz'
setup( setup(
name = NAME, name = NAME,
...@@ -35,6 +35,7 @@ setup( ...@@ -35,6 +35,7 @@ setup(
maintainer_email = AUTHOR_EMAIL, maintainer_email = AUTHOR_EMAIL,
license = LICENSE, license = LICENSE,
url = URL, url = URL,
download_url = DOWNLOAD_URL,
packages = ["arpeggio"], packages = ["arpeggio"],
keywords = "parser packrat peg", keywords = "parser packrat peg",
classifiers=[ classifiers=[
......
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