Ticket #1: setup.py
| File setup.py, 0.5 kB (added by shubnub@…, 20 months ago) |
|---|
| Line | |
|---|---|
| 1 | #!/usr/bin/env python24 |
| 2 | |
| 3 | from distutils.core import setup, Extension |
| 4 | |
| 5 | lorcon = Extension('lorcon', |
| 6 | sources = ['lorconmodule.c'], |
| 7 | include_dirs = ['/usr/local/include'], |
| 8 | libraries = ['orcon'], |
| 9 | library_dirs = ['/usr/local/lib']) |
| 10 | |
| 11 | setup (name = "Lorcon", |
| 12 | version = "0.1", |
| 13 | description = "Python bindings for LORCON", |
| 14 | author = "Pete Toscano", |
| 15 | author_email = "shubnub@gmail.com", |
| 16 | ext_modules = [lorcon]) |
