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

Revision 24442, 556 bytes checked in by broder, 14 years ago (diff)
In python-moira: * New upstream version
  • 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.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.