Eli Bendersky | 8dbd149 | 2013-08-03 06:07:08 -0700 | [diff] [blame^] | 1 | import os, sys |
| 2 | from distutils.core import setup |
| 3 | |
| 4 | |
| 5 | setup( |
| 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='BSD', |
| 16 | version='2.10', |
| 17 | author='Eli Bendersky', |
| 18 | maintainer='Eli Bendersky', |
| 19 | author_email='eliben@gmail.com', |
| 20 | url='https://github.com/eliben/pycparser', |
| 21 | platforms='Cross Platform', |
| 22 | classifiers = [ |
| 23 | 'Programming Language :: Python :: 2', |
| 24 | 'Programming Language :: Python :: 3',], |
| 25 | packages=['pycparser', 'pycparser.ply'], |
| 26 | package_data={'pycparser': ['*.cfg']}, |
| 27 | ) |
| 28 | |
| 29 | |