-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (27 loc) · 1004 Bytes
/
setup.py
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
"""Classes for help wth game creation"""
classifiers = """\
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Programming Language :: Python
License :: Public Domain
Operating System :: OS Independent
Topic :: Games/Entertainment
"""
from distutils.core import setup
from gameobjects.__init__ import __version__
print("Game Objects v" + __version__)
doclines = __doc__.split("\n")
setup( name = 'gameobjects',
version = __version__,
author = 'Will McGugan',
author_email = 'will@willmcgugan.com',
license = "public domain",
url = 'http://code.google.com/p/gameobjects/',
download_url = 'http://code.google.com/p/gameobjects/downloads/list',
platforms = ['any'],
description = doclines[0],
long_description = '\n'.join(doclines[2:]),
#package_dir = {'gameobjects': './gameobjects'},
packages = ['gameobjects'],
classifiers = classifiers.splitlines(),
)