File: setup_py2exe.py

package info (click to toggle)
maptransfer 0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 216 kB
  • ctags: 93
  • sloc: python: 817; makefile: 10
file content (32 lines) | stat: -rw-r--r-- 655 bytes parent folder | download | duplicates (2)
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
# -*- coding: utf-8 -*-

""" Distutils script for use with py2exe in order to build a distributable
    ZIP package containing everything needed to run the MapTransfer client.

    Copyright © 2009-2010, Michael "Svedrin" Ziegler <diese-addy@funzt-halt.net>
"""

from distutils.core import setup
import py2exe

setup(
	version = "0.3",
	description = "Uploads maps from local Steam accounts to a gameserver. (Especially useful for lazy admins.)",
	name = "maptransfer",
	
	console = [
		{ "script": "client.py" }
		],
	
	data_files = [
		'maptransfer.example.cfg',
		'client_de.qm'
		],
	
	options = {
		"py2exe": {
			"includes":["sip"]
			}
		}
	)