Skip to content

Commit 69da034

Browse files
Update setup.py and version.
About to submit to PyPi using this version.
1 parent d3ea80d commit 69da034

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

pygly/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# the version of software
55
# this is used by the setup.py script
6-
__version__ = '20120508'
6+
__version__ = '20120816'
77

88
# make 'from module import *' work dynamically.
99
# otherwise we have to manually update the __all__ list.

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
from distutils.core import setup
44

5+
import pygly
6+
57
setup(
68
name = 'PyGLy',
7-
version = '20120506',
9+
version = pygly.__version__,
810
description = 'Pyglet based 3D Framework',
911
long_description = """An OpenGL framework designed for flexbility
1012
and power. PyGLy provides a number of tools to let you
@@ -23,13 +25,15 @@
2325
'pygly.uv_generators',
2426
],
2527
classifiers = [
28+
'Natural Language :: English',
2629
'Intended Audience :: Developers',
2730
'Operating System :: MacOS :: MacOS X',
2831
'Operating System :: Microsoft :: Windows',
2932
'Operating System :: POSIX',
3033
'Programming Language :: Python',
34+
'Topic :: Multimedia :: Graphics',
3135
'Topic :: Multimedia :: Graphics :: 3D Rendering',
32-
'License :: OSI Approved :: MIT License',
36+
'License :: OSI Approved :: BSD License',
3337
'Topic :: Software Development :: Libraries',
3438
'Topic :: Software Development :: Libraries :: Python Modules',
3539
]

0 commit comments

Comments
 (0)