Sha256: a8e73014eebe13d4296d9c890a4d13f58eab9c82499a547550aed2ea186ea029

Contents?: true

Size: 1.31 KB

Versions: 8

Compression:

Stored size: 1.31 KB

Contents

#!/usr/bin/env python2
# -*- coding: utf-8 -*-

import sys, glob
from distutils.core import setup

DESCRIPTION = (
    'Parse C++ header files and generate a data structure '
    'representing the class'
    )


CLASSIFIERS = [
    'Operating System :: OS Independent',
    'Programming Language :: Python',
    'Programming Language :: Python :: 2',
    'Programming Language :: Python :: 3',
    'Programming Language :: C++',
    'License :: OSI Approved :: BSD License',
    'Development Status :: 5 - Production/Stable',
    'Intended Audience :: Developers',
    'Topic :: Software Development',
    'Topic :: Software Development :: Code Generators',
    'Topic :: Software Development :: Compilers',
    'Topic :: Software Development :: Disassemblers'
    ]

setup(
    name = 'CppHeaderParser',
    version = '1.9',
    author = 'Jashua Cloutier',
    author_email = 'jashuac@bellsouth.net',
    url = 'http://sourceforge.net/projects/cppheaderparser/',
    description = DESCRIPTION,
    long_description = open('README.txt').read(),
    license = 'BSD',
    platforms = 'Platform Independent',
    packages = ['CppHeaderParser'],
    keywords = 'c++ header parser ply',
    classifiers = CLASSIFIERS,
    requires = ['ply'],
    package_data = { 'CppHeaderParser': ['README', 'README.html', 'doc/*.*', 'examples/*.*'], },
    )

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
webruby-0.2.7 modules/emscripten/third_party/CppHeaderParser/setup.py
webruby-0.2.5 modules/emscripten/third_party/CppHeaderParser/setup.py
webruby-0.2.4 modules/emscripten/third_party/CppHeaderParser/setup.py
webruby-0.2.2 modules/emscripten/third_party/CppHeaderParser/setup.py
webruby-0.2.1 modules/emscripten/third_party/CppHeaderParser/setup.py
webruby-0.1.2 modules/emscripten/third_party/CppHeaderParser/setup.py
webruby-0.1.1 modules/emscripten/third_party/CppHeaderParser/setup.py
webruby-0.1.0 modules/emscripten/third_party/CppHeaderParser/setup.py