File: setup.py

package info (click to toggle)
python-pyglew 0.1.2-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 6,084 kB
  • ctags: 160
  • sloc: python: 652; ansic: 321; cpp: 273; sh: 175; makefile: 91
file content (19 lines) | stat: -rwxr-xr-x 527 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

from distutils.core import setup,Extension
import os

if os.name == 'nt': 
   data_files=[('Lib/site-packages', ['pyglew.dll', 'glew32.dll'])]
else:
   data_files=[('lib/python2.5/site-packages', ['pyglew.so', 'libGLEW.so'])]

setup(name='PyGLEW',
      version='0.1.2',
      description='GLEW bindings for Python',
      author='Calle Lejdfors',
      author_email='calle.lejdfors@cs.lth.se',
      url='http://www.cs.lth.se/~calle',
      packages=[],
      ext_modules=[],
      data_files=data_files)