Commit 646d9ca2 authored by Igor Dejanovic's avatar Igor Dejanovic

Added gitignore. Fixed url in setup.

parent e8ec28d1
*.py[cod]
# C extensions
*.so
# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg
lib
lib64
__pycache__
# Installer logs
pip-log.txt
# Unit test / coverage reports
.coverage
.tox
nosetests.xml
# Translations
*.mo
# Mr Developer
.mr.developer.cfg
# Eclipse
.settings
.project
.pydevproject
# KDE Dolphin
.directory
# Graphviz
*.dot
*.svg
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#######################################################################
###############################################################################
# Name: arpeggio.py
# Purpose: PEG parser interpreter
# Author: Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>
......@@ -9,7 +9,7 @@
#
# Arpeggio is implementation of pacrat parser interpreter based on PEG grammars.
# Parsers are defined using python language construction or PEG language.
#######################################################################
###############################################################################
__author__ = "Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>"
__version__ = "0.1-dev"
......@@ -22,7 +22,7 @@ DESC = 'Pacrat parser interpreter'
AUTHOR = 'Igor R. Dejanovic'
AUTHOR_EMAIL = 'igor DOT dejanovic AT gmail DOT com'
LICENCE = 'MIT'
URL = 'http://arpeggio.googlecode.com/'
URL = 'https://github.com/igordejanovic/arpeggio'
setup(
name = NAME,
......
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