Revision 24442,
556 bytes
checked in by broder, 15 years ago
(diff) |
In python-moira:
* New upstream version
|
-
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="PyMoira", |
---|
9 | version="4.2.2", |
---|
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"], |
---|
18 | libraries=["moira", "krb5"]) |
---|
19 | ], |
---|
20 | scripts=['qy'], |
---|
21 | cmdclass= {"build_ext": build_ext} |
---|
22 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.