File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
3
3
from distutils .core import setup
4
+ import sys
4
5
5
6
import pygly
6
7
8
+ os_x_requires = ['pyglet(>=1.2)' , 'pyobjc(==2.2)' ]
9
+ other_requires = ['pyglet' ]
10
+
7
11
setup (
8
- name = 'PyGLy ' ,
12
+ name = 'pygly ' ,
9
13
version = pygly .__version__ ,
10
14
description = 'Pyglet based 3D Framework' ,
11
15
long_description = """An OpenGL framework designed for flexbility
15
19
author = 'Adam Griffiths' ,
16
20
author_email = '[email protected] ' ,
17
21
url = 'https://github.com/adamlwgriffiths/PyGLy' ,
22
+ requires = [
23
+ 'numpy' ,
24
+ 'cython' ,
25
+ 'pil' ,
26
+ 'pyrr' ,
27
+ ]
28
+ + (
29
+ os_x_requires if 'darwin' in sys .platform else other_requires
30
+ ),
18
31
platforms = [ 'any' ],
19
32
test_suite = "pygly.test" ,
20
33
packages = [
You can’t perform that action at this time.
0 commit comments