-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 703 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
from distutils.core import setup
setup(name='glyph',
version='2.6.5b',
author='Chandler Armstrong',
author_email='omni.armstrong@gmail.com',
url='http://code.google.com/p/glyph/',
description='Pygame typesetting library',
download_url='http://code.google.com/p/glyph/downloads/list',
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Software Development :: Libraries :: pygame',
'Topic :: Text Processing'],
packages=['glyph'],
requires=['pygame(>=1.9.1)'],
provides=['glyph'])