summaryrefslogtreecommitdiff
path: root/setup.py
blob: d031cad83f6ad93c54cd0df7c3acd3ad0f269c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import os, sys
from distutils.core import setup


setup(
    # metadata
    name='pycparser',
    description='C parser in Python',
    long_description="""
        pycparser is a complete parser of the C language, written in 
        pure Python using the PLY parsing library.
        It parses C code into an AST and can serve as a front-end for
        C compilers or analysis tools.
    """,
    license='LGPL',
    version='2.00',
    author='Eli Bendersky',
    maintainer='Eli Bendersky',
    author_email='eliben@gmail.com',
    url='http://code.google.com/p/pycparser/',
    platforms='Cross Platform',
    
    packages=['pycparser'],
)