blob: c92a01537e7ab7f92764508fb7563cba2f56d294 [file] [log] [blame]
Eli Bendersky3921e8e2010-05-21 09:05:39 +03001import os, sys
2from distutils.core import setup
3
4
5setup(
6 # metadata
7 name='pycparser',
8 description='C parser in Python',
9 long_description="""
10 pycparser is a complete parser of the C language, written in
11 pure Python using the PLY parsing library.
12 It parses C code into an AST and can serve as a front-end for
13 C compilers or analysis tools.
14 """,
eli.bendersky92b72022011-02-18 09:19:05 +020015 install_requires=['ply'],
eli.bendersky84a6a632011-04-29 09:00:43 +030016 license='BSD',
eli.benderskyb56e8f82011-03-06 07:56:55 +020017 version='2.03',
Eli Bendersky3921e8e2010-05-21 09:05:39 +030018 author='Eli Bendersky',
19 maintainer='Eli Bendersky',
20 author_email='eliben@gmail.com',
21 url='http://code.google.com/p/pycparser/',
22 platforms='Cross Platform',
23
24 packages=['pycparser'],
eli.benderskyfe5c2bb2010-12-04 17:38:11 +020025 package_data={'pycparser': ['*.cfg']},
Eli Bendersky3921e8e2010-05-21 09:05:39 +030026)
27
28