Menu

[d3a4b2]: / setup.py  Maximize  Restore  History

Download this file

63 lines (57 with data), 2.5 kB

 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# -*- encoding: utf-8 -*-
import sys
if sys.argv and sys.argv[1] == 'py2exe':
from distutils.core import setup
else:
from setuptools import setup
import py2exe
setup(name='deadmeat',
version='0.1',
description='Chickens laying exploding eggs to fry each other',
long_description = '''
This is (yet) another Bomberman clone... but with chickens this time.
If you don't know bomberman, the game is very simple: you're a chicken,
you lay eggs... Your eggs explode (yeah!)... When they explode, they can
fry other players or destroy the terrain, revealing some nice upgrades.
Those can be used to cause even more damage to the terrain or to the
opponents. See the bonuses section for more details on upgrades. The
winner is the last chicken standing.
''',
author='Gaëtan de Menten',
author_email='gdementen@gmail.com',
url='http://deadmeat.sourceforge.net/',
license='GPLv3',
platforms='Unix, MacOSX, Windows',
install_requires=['pygame>=1.8',
'pyyaml>=3.0.8'],
packages = ['deadmeat'],
package_data = {
'deadmeat': ['data/fonts/Casual_Tossed.ttf',
'data/graphics/bonuses/*.png',
'data/graphics/bonuses/*.ad',
'data/graphics/tilesets/default/*',
'data/graphics/*.png',
'data/graphics/*.jpg',
'data/graphics/*.ad',
'data/levels/*.level',
'data/music/music.it',
'data/skins/default/*',
'data/skins/gladiator/*',
'data/sounds/*.wav']
},
zip_safe=False,
classifiers = ['Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Games/Entertainment :: Arcade'],
windows=['deadmeat/__init__.py'],
options=dict(
py2exe=dict(
excludes=["Tkconstants","Tkinter","tcl", "_ssl", "pdb", "pydoc",
"pydoc_topics", "difflib"],
)
)
)