annotate gamelib/version.py @ 459:e9393970b5f6

picture icons for all counters
author Adrianna Pińska <adrianna.pinska@gmail.com>
date Mon, 23 Nov 2009 20:12:03 +0000
parents be6c1be37f28
children c14a6d640507 3d173ea43ad5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
283
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
1 """Operation Fox Assault Version Information"""
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
2
358
be6c1be37f28 Release 1.0.0.
Simon Cross <hodgestar@gmail.com>
parents: 283
diff changeset
3 VERSION = (1, 0, 0, 'final', 0)
283
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
4 BASE_VERSION_STR = '.'.join([str(x) for x in VERSION[:3]])
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
5 VERSION_STR = {
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
6 'final': BASE_VERSION_STR,
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
7 'alpha': BASE_VERSION_STR + 'a' + str(VERSION[4]),
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
8 'rc': BASE_VERSION_STR + 'rc' + str(VERSION[4]),
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
9 }[VERSION[3]]
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
10
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
11 NAME = 'Operation Fox Assault'
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
12 DESCRIPTION = 'Turn-based strategy game written using Pygame.'
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
13
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
14 PEOPLE = {
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
15 'Simon': ('Simon Cross', 'hodgestar+rinkhals@gmail.com'),
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
16 'Neil': ('Neil Muller', 'drnmuller+rinkhals@gmail.com'),
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
17 'Adrianna': ('Adrianna Pinska', 'adrianna.pinska+rinkhals@gmail.com'),
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
18 'Jeremy': ('Jeremy Thurgood', 'firxen+rinkhals@gmail.com'),
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
19 'David': ('David Fraser', 'davidroyfraser+rinkhals@gmail.com'),
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
20 }
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
21
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
22 AUTHORS = [
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
23 PEOPLE['Simon'],
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
24 PEOPLE['Neil'],
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
25 PEOPLE['Adrianna'],
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
26 PEOPLE['Jeremy'],
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
27 PEOPLE['David'],
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
28 ]
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
29
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
30 AUTHOR_NAME = AUTHORS[0][0]
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
31 AUTHOR_EMAIL = AUTHORS[0][1]
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
32
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
33 MAINTAINERS = AUTHORS
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
34
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
35 MAINTAINER_NAME = MAINTAINERS[0][0]
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
36 MAINTAINER_EMAIL = MAINTAINERS[0][1]
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
37
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
38 ARTISTS = [
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
39 PEOPLE['Adrianna'],
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
40 PEOPLE['Jeremy'],
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
41 ]
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
42
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
43 DOCUMENTERS = [
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
44 PEOPLE['Neil'],
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
45 ]
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
46
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
47 # SOURCEFORGE_URL = 'http://sourceforge.net/projects/XXXX/'
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
48 # PYPI_URL = 'http://pypi.python.org/pypi/XXXX/'
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
49
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
50 LICENSE = 'GPL'
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
51 # LICENSE_TEXT = resource_string(__name__, 'COPYING')
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
52
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
53 CLASSIFIERS = [
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
54 'Development Status :: 4 - Beta',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
55 'Environment :: MacOS X',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
56 'Environment :: Win32 (MS Windows)',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
57 'Environment :: X11 Applications',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
58 'Intended Audience :: End Users/Desktop',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
59 'License :: OSI Approved :: GNU General Public License (GPL)',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
60 'Natural Language :: English',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
61 'Operating System :: Microsoft :: Windows',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
62 'Operating System :: POSIX',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
63 'Operating System :: MacOS :: MacOS X',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
64 'Programming Language :: Python :: 2.5',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
65 'Programming Language :: Python :: 2.6',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
66 'Topic :: Games/Entertainment :: Turn Based Strategy',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
67 ]
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
68
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
69 PLATFORMS = [
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
70 'Linux',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
71 'Mac OS X',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
72 'Windows',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
73 ]
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
74
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
75 INSTALL_REQUIRES = [
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
76 ]
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
77
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
78 # Install these manually
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
79 NON_EGG_REQUIREMENTS = [
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
80 'setuptools',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
81 'pygame',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
82 'pgu',
6ade2b371445 Start of file with version and maintainer information.
Simon Cross <hodgestar@gmail.com>
parents:
diff changeset
83 ]