Revision 24605,
675 bytes
checked in by broder, 15 years ago
(diff) |
Snapshot new version of PyMoira that includes mrclient bindings.
|
-
Property svn:executable set to
*
|
Rev | Line | |
---|
[24440] | 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="PyMoira", |
---|
[24605] | 9 | version="4.3.0", |
---|
[24440] | 10 | description="PyMoira - Python bindings for the Athena Moira library", |
---|
| 11 | author="Evan Broder", |
---|
| 12 | author_email="broder@mit.edu", |
---|
| 13 | license="MIT", |
---|
| 14 | py_modules=['moira'], |
---|
| 15 | ext_modules=[ |
---|
| 16 | Extension("_moira", |
---|
| 17 | ["_moira.pyx"], |
---|
[24605] | 18 | libraries=["moira", "krb5"]), |
---|
| 19 | Extension("mrclient", |
---|
| 20 | ["mrclient.pyx"], |
---|
| 21 | libraries=["mrclient", "moira"]), |
---|
[24440] | 22 | ], |
---|
| 23 | scripts=['qy'], |
---|
| 24 | cmdclass= {"build_ext": build_ext} |
---|
| 25 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.