forked from adamlwgriffiths/PyGLy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.31 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.31 KB
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
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
from distutils.core import setup
import sys
# get pygly's version but don't import it
# or we'll need our dependencies already installed
# https://github.com/todddeluca/happybase/commit/63573cdaefe3a2b98ece87e19d9ceb18f00bc0d9
exec(compile(open('pygly/version.py').read(), 'pygly/version.py', 'exec'))
setup(
name = 'pygly',
version = __version__,
description = 'Pure Python OpenGL framework built on top of Pyglet',
license = 'BSD',
author = 'Adam Griffiths',
url = 'https://github.com/adamlwgriffiths/PyGLy',
requires = [
'pyopengl',
'numpy',
'pyrr',
],
platforms = [ 'any' ],
test_suite = "pygly.test",
packages = [
'pygly',
'pygly.cocos2d',
],
classifiers = [
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)