blob: 680d23f42fa468bf7e855ec143dcb4cd216b5147 [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 """,
15 license='LGPL',
eli.bendersky347497d2010-12-10 15:17:28 +020016 version='2.02',
Eli Bendersky3921e8e2010-05-21 09:05:39 +030017 author='Eli Bendersky',
18 maintainer='Eli Bendersky',
19 author_email='eliben@gmail.com',
20 url='http://code.google.com/p/pycparser/',
21 platforms='Cross Platform',
22
23 packages=['pycparser'],
eli.benderskyfe5c2bb2010-12-04 17:38:11 +020024 package_data={'pycparser': ['*.cfg']},
Eli Bendersky3921e8e2010-05-21 09:05:39 +030025)
26
27