Skip to content

Commit 9701566

Browse files
authored
Add files via upload
1 parent 131a621 commit 9701566

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed

PKG-INFO

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Metadata-Version: 1.0
2+
Name: gameobjects
3+
Version: 1.0.1
4+
Summary: Classes for help wth game creation, now in Python 3
5+
Home-page: http://code.google.com/p/gameobjects/
6+
Author: Will McGugan
7+
Author-email: [email protected]
8+
License: public domain
9+
Download-URL: http://code.google.com/p/gameobjects/downloads/list
10+
Description: UNKNOWN
11+
Platform: any
12+
Classifier: Development Status :: 2 - Pre-Alpha
13+
Classifier: Intended Audience :: Developers
14+
Classifier: Programming Language :: Python
15+
Classifier: License :: Public Domain
16+
Classifier: Operating System :: OS Independent
17+
Classifier: Topic :: Games/Entertainment

setup.py

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

Comments
 (0)