Revision 23244,
604 bytes
checked in by broder, 16 years ago
(diff) |
Pull changes to python-hesiod from upstream - sort filsys entries by
priority
|
-
Property svn:executable set to
*
|
Rev | Line | |
---|
[23150] | 1 | #!/usr/bin/python |
---|
| 2 | |
---|
| 3 | from setuptools import setup |
---|
| 4 | from distutils.extension import Extension |
---|
| 5 | from Pyrex.Distutils import build_ext |
---|
| 6 | |
---|
| 7 | setup( |
---|
| 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.