|
| 1 | +"""Classes for help wth game creation""" |
| 2 | + |
| 3 | +classifiers = """\ |
| 4 | +Development Status :: 2 - Pre-Alpha |
| 5 | +Intended Audience :: Developers |
| 6 | +Programming Language :: Python |
| 7 | +License :: Public Domain |
| 8 | +Operating System :: OS Independent |
| 9 | +Topic :: Games/Entertainment |
| 10 | +""" |
| 11 | + |
| 12 | +from distutils.core import setup |
| 13 | +from gameobjects.__init__ import __version__ |
| 14 | + |
| 15 | +print("Game Objects v" + __version__) |
| 16 | + |
| 17 | +doclines = __doc__.split("\n") |
| 18 | + |
| 19 | +setup( name = 'gameobjects', |
| 20 | + version = __version__, |
| 21 | + author = 'Will McGugan', |
| 22 | + author_email = '[email protected]', |
| 23 | + license = "public domain", |
| 24 | + url = 'http://code.google.com/p/gameobjects/', |
| 25 | + download_url = 'http://code.google.com/p/gameobjects/downloads/list', |
| 26 | + platforms = ['any'], |
| 27 | + description = doclines[0], |
| 28 | + long_description = '\n'.join(doclines[2:]), |
| 29 | + #package_dir = {'gameobjects': './gameobjects'}, |
| 30 | + packages = ['gameobjects'], |
| 31 | + classifiers = classifiers.splitlines(), |
| 32 | + ) |
0 commit comments