File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 3
3
4
4
# the version of software
5
5
# this is used by the setup.py script
6
- __version__ = '20120508 '
6
+ __version__ = '20120816 '
7
7
8
8
# make 'from module import *' work dynamically.
9
9
# otherwise we have to manually update the __all__ list.
Original file line number Diff line number Diff line change 2
2
3
3
from distutils .core import setup
4
4
5
+ import pygly
6
+
5
7
setup (
6
8
name = 'PyGLy' ,
7
- version = '20120506' ,
9
+ version = pygly . __version__ ,
8
10
description = 'Pyglet based 3D Framework' ,
9
11
long_description = """An OpenGL framework designed for flexbility
10
12
and power. PyGLy provides a number of tools to let you
23
25
'pygly.uv_generators' ,
24
26
],
25
27
classifiers = [
28
+ 'Natural Language :: English' ,
26
29
'Intended Audience :: Developers' ,
27
30
'Operating System :: MacOS :: MacOS X' ,
28
31
'Operating System :: Microsoft :: Windows' ,
29
32
'Operating System :: POSIX' ,
30
33
'Programming Language :: Python' ,
34
+ 'Topic :: Multimedia :: Graphics' ,
31
35
'Topic :: Multimedia :: Graphics :: 3D Rendering' ,
32
- 'License :: OSI Approved :: MIT License' ,
36
+ 'License :: OSI Approved :: BSD License' ,
33
37
'Topic :: Software Development :: Libraries' ,
34
38
'Topic :: Software Development :: Libraries :: Python Modules' ,
35
39
]
You can’t perform that action at this time.
0 commit comments