source: trunk/debathena/debathena/python-moira/setup.py @ 24605

Revision 24605, 675 bytes checked in by broder, 14 years ago (diff)
Snapshot new version of PyMoira that includes mrclient bindings.
  • Property svn:executable set to *
Line 
1#!/usr/bin/python
2
3from setuptools import setup
4from distutils.extension import Extension
5from Pyrex.Distutils import build_ext
6
7setup(
8    name="PyMoira",
9    version="4.3.0",
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        Extension("mrclient",
20                  ["mrclient.pyx"],
21                  libraries=["mrclient", "moira"]),
22        ],
23    scripts=['qy'],
24    cmdclass= {"build_ext": build_ext}
25)
Note: See TracBrowser for help on using the repository browser.