Revision 23150,
603 bytes
checked in by broder, 16 years ago
(diff) |
Add python-hesiod package for the new version of pyhesiodfs
|
-
Property svn:executable set to
*
|
Line | |
---|
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", |
---|
9 | version="0.2.9", |
---|
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.