#!/usr/bin/env python

#import ez_setup
#ez_setup.use_setuptools()

#from setuptools import setup, Extension

from distutils.core import setup, Extension

VERSION = '0.1'
DESCRIPTION = "Rewrite of the struct module"
LONG_DESCRIPTION = """
Struct module offering a compile feature
"""

CLASSIFIERS = filter(None, map(str.strip,
"""                 
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python
Topic :: Software Development :: Libraries :: Python Modules
""".splitlines()))

setup(
    name="newstruct",
    version=VERSION,
    description=DESCRIPTION,
    long_description=LONG_DESCRIPTION,
    classifiers=CLASSIFIERS,
    author="Bob Ippolito",
    author_email="bob@redivi.com",
    url="http://undefined.org/python/#newstruct",
    license="MIT License",
    py_modules=['newstruct'],
    ext_modules=[
        Extension("_newstruct", ["Modules/_newstruct.c"]),
    ],
    #zip_safe=False,
)
