Ticket #1: setup.py

File setup.py, 0.5 kB (added by shubnub@…, 20 months ago)

File that builds/installs the LORCON Python module.

Line 
1#!/usr/bin/env python24
2
3from distutils.core import setup, Extension
4
5lorcon = Extension('lorcon',
6                   sources = ['lorconmodule.c'],
7                   include_dirs = ['/usr/local/include'],
8                   libraries = ['orcon'],
9                   library_dirs = ['/usr/local/lib'])
10                     
11setup (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])