changeset 283:6ade2b371445

Start of file with version and maintainer information.
author Simon Cross <hodgestar@gmail.com>
date Sat, 05 Sep 2009 15:18:17 +0000
parents f93e0c992f28
children f461fd203e09
files gamelib/version.py
diffstat 1 files changed, 83 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gamelib/version.py	Sat Sep 05 15:18:17 2009 +0000
@@ -0,0 +1,83 @@
+"""Operation Fox Assault Version Information"""
+
+VERSION = (1, 0, 0, 'alpha', 1)
+BASE_VERSION_STR = '.'.join([str(x) for x in VERSION[:3]])
+VERSION_STR = {
+    'final': BASE_VERSION_STR,
+    'alpha': BASE_VERSION_STR + 'a' + str(VERSION[4]),
+    'rc': BASE_VERSION_STR + 'rc' + str(VERSION[4]),
+}[VERSION[3]]
+
+NAME = 'Operation Fox Assault'
+DESCRIPTION = 'Turn-based strategy game written using Pygame.'
+
+PEOPLE = {
+    'Simon': ('Simon Cross', 'hodgestar+rinkhals@gmail.com'),
+    'Neil': ('Neil Muller', 'drnmuller+rinkhals@gmail.com'),
+    'Adrianna': ('Adrianna Pinska', 'adrianna.pinska+rinkhals@gmail.com'),
+    'Jeremy': ('Jeremy Thurgood', 'firxen+rinkhals@gmail.com'),
+    'David': ('David Fraser', 'davidroyfraser+rinkhals@gmail.com'),
+}
+
+AUTHORS = [
+    PEOPLE['Simon'],
+    PEOPLE['Neil'],
+    PEOPLE['Adrianna'],
+    PEOPLE['Jeremy'],
+    PEOPLE['David'],
+]
+
+AUTHOR_NAME = AUTHORS[0][0]
+AUTHOR_EMAIL = AUTHORS[0][1]
+
+MAINTAINERS = AUTHORS
+
+MAINTAINER_NAME = MAINTAINERS[0][0]
+MAINTAINER_EMAIL = MAINTAINERS[0][1]
+
+ARTISTS = [
+    PEOPLE['Adrianna'],
+    PEOPLE['Jeremy'],
+]
+
+DOCUMENTERS = [
+    PEOPLE['Neil'],
+]
+
+# SOURCEFORGE_URL = 'http://sourceforge.net/projects/XXXX/'
+# PYPI_URL = 'http://pypi.python.org/pypi/XXXX/'
+
+LICENSE = 'GPL'
+# LICENSE_TEXT = resource_string(__name__, 'COPYING')
+
+CLASSIFIERS = [
+    'Development Status :: 4 - Beta',
+    'Environment :: MacOS X',
+    'Environment :: Win32 (MS Windows)',
+    'Environment :: X11 Applications',
+    'Intended Audience :: End Users/Desktop',
+    'License :: OSI Approved :: GNU General Public License (GPL)',
+    'Natural Language :: English',
+    'Operating System :: Microsoft :: Windows',
+    'Operating System :: POSIX',
+    'Operating System :: MacOS :: MacOS X',
+    'Programming Language :: Python :: 2.5',
+    'Programming Language :: Python :: 2.6',
+    'Topic :: Games/Entertainment :: Turn Based Strategy',
+]
+
+PLATFORMS = [
+    'Linux',
+    'Mac OS X',
+    'Windows',
+]
+
+INSTALL_REQUIRES = [
+]
+
+# Install these manually
+NON_EGG_REQUIREMENTS = [
+    'setuptools',
+    'pygame',
+    'pgu',
+]