File: setup.py

package info (click to toggle)
funcparserlib 0.3.5-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 396 kB
  • sloc: python: 725; sh: 70; makefile: 37
file content (16 lines) | stat: -rw-r--r-- 423 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- coding: utf-8 -*-

from distutils.core import setup

setup(
    name='funcparserlib',
    version='0.3.5',
    packages=['funcparserlib'],
    package_dir={'': 'src'},
    author='Andrey Vlasovskikh',
    author_email='andrey.vlasovskikh@gmail.com',
    description='Recursive descent parsing library based on functional '
        'combinators',
    license='MIT',
    url='http://code.google.com/p/funcparserlib/')