Update of /cvsroot/ctypes/ctypes/codegen
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv750
Added Files:
setup.py ChangeLog .cvsignore
Log Message:
Initial import of the current ctypes codegenerator.
--- NEW FILE: .cvsignore ---
build
dist
--- NEW FILE: setup.py ---
"""ctypes code generator
"""
from distutils.core import setup
setup(name="ctypes_codegen",
packages = ['ctypes_codegen'],
scripts = ['scripts/h2xml.py', 'scripts/xml2py.py'],
description="ctypes code generator",
long_description = __doc__,
author="Thomas Heller",
author_email="th...@py...",
license="MIT License",
## url="http://starship.python.net/crew/theller/ctypes.html",
## platforms=["windows", "Linux", "MacOS X", "Solaris", "FreeBSD"],
)
--- NEW FILE: ChangeLog ---
2006-06-08 Thomas Heller <th...@py...>
* Initial import of the current ctypes codegenerator version.
|