source: trunk/debathena/debathena/python-hesiod/setup.py @ 23244

Revision 23244, 604 bytes checked in by broder, 15 years ago (diff)
Pull changes to python-hesiod from upstream - sort filsys entries by priority
  • Property svn:executable set to *
RevLine 
[23150]1#!/usr/bin/python
2
3from setuptools import setup
4from distutils.extension import Extension
5from Pyrex.Distutils import build_ext
6
7setup(
8    name="PyHesiod",
[23244]9    version="0.2.10",
[23150]10    description="PyHesiod - Python bindings for the Heisod naming library",
11    author="Evan Broder",
12    author_email="broder@mit.edu",
13    url="http://ebroder.net/code/PyHesiod",
14    license="MIT",
15    requires=['Pyrex'],
16    py_modules=['hesiod'],
17    ext_modules=[
18        Extension("_hesiod",
19                  ["_hesiod.pyx"],
20                  libraries=["hesiod"])
21        ],
22    cmdclass= {"build_ext": build_ext}
23)
Note: See TracBrowser for help on using the repository browser.