-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (27 loc) · 955 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- Python -*- -*- coding: iso-8859-1 -*-
# :Project: pxpy -- Module setup
# :Source: $Source: /cvsroot/pxlib/bindings/python/Setup.py,v $
# :Created: Sun, Apr 04 2004 00:14:12 CEST
# :Author: Lele Gaifax <[email protected]>
# :Revision: $Revision: 1.3 $ by $Author: lele $
# :Date: $Date: 2004/07/19 23:04:35 $
#
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
setup(
name = 'python-pxlib',
description = "Python wrapper around pxlib",
version = '0.0.1',
author = "Lele Gaifax",
author_email = "[email protected]",
url = "http://pxlib.sourceforge.net/",
ext_modules=[
Extension("pxpy", ["pxpy.pyx"],
# Uncomment, to use current version
#include_dirs=["../../pxlib/include/"],
#library_dirs=["../../pxlib/src/.libs"],
libraries=["px"]),
],
cmdclass = {'build_ext': build_ext}
)