root/pyx_setup.py
| Revision 51, 0.5 kB (checked in by steve, 1 year ago) |
|---|
| Line | |
|---|---|
| 1 | #!/usr/bin/env python |
| 2 | # encoding: utf-8 |
| 3 | # Copyright 2007 Shu Ning Bian freespace@gmail.com |
| 4 | # Licensed for distribution under the GPL version 2, check COPYING for details |
| 5 | # Mactorii is intended as a image organiser/viewer in the spirit of qiv |
| 6 | from distutils.core import setup |
| 7 | from distutils.extension import Extension |
| 8 | from Pyrex.Distutils import build_ext |
| 9 | setup( |
| 10 | name = "pyx", |
| 11 | ext_modules=[ |
| 12 | Extension("pyx", ["pyx.pyx"], libraries = []) |
| 13 | ], |
| 14 | cmdclass = {'build_ext': build_ext} |
| 15 | ) |
| 16 | |
| 17 | def main(): |
| 18 | pass |
| 19 | |
| 20 | |
| 21 | if __name__ == '__main__': |
| 22 | main() |
| 23 |
Note: See TracBrowser for help on using the browser.
