File: setup.py

package info (click to toggle)
speg 0.3-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 68 kB
  • sloc: python: 135; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 344 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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'],
    )