forked from AlexMarinescu/pyGLEW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 865 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
# pyGLEW - Cython GLEW Wrapper for Python
#
# Copyright (C) 2012, Matthew Sitton
# 2012, Alex Marinescu
#
# LICENSED UNDER THE BSD LICENSE
#
# YOU SHOULD HAVE RECIEVED A COPY ALONG WITH THIS PROGRAM,
# SEE "LICENSE" FOR MORE INFORMATION.
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
setup(
name = 'pyGLEW',
version =' 0.0.1a',
description='GLEW Python binding',
author = 'Alex Marinescu, Matthew Sitton',
author_email = 'Alex: [email protected], Matthew: [email protected]',
url = 'https://github.com/AlexMarinescu/pyGLEW',
license = 'BSD',
cmdclass = {'build_ext': build_ext},
ext_modules = [
Extension("glew_ARB", ["glew_ARB.pyx"],
libraries=["opengl32","glu32","glew32"])
]
)