#!/usr/bin/env python
# coding: utf-8

from setuptools import setup

setup(
    name='speg',
    version='0.3',

    description='A PEG-based parser interpreter with memoization',
    author='Martin Vejnár',
    author_email='vejnar.martin@gmail.com',
    url='https://github.com/avakar/speg',
    license='MIT',

    packages=['speg'],
    )
