| 1 |
joko |
1.1 |
#!/usr/bin/env python |
| 2 |
|
|
# -*- coding: utf-8 -*- |
| 3 |
|
|
|
| 4 |
|
|
# $Id: setup.py,v 1.1 2007/10/14 07:04:37 joko Exp $ |
| 5 |
|
|
|
| 6 |
|
|
# (c) 2007 Andreas Motl <andreas.motl@ilo.de> |
| 7 |
|
|
|
| 8 |
|
|
from distutils.core import setup |
| 9 |
|
|
import py2exe |
| 10 |
|
|
|
| 11 |
|
|
opts = { |
| 12 |
|
|
"py2exe": { |
| 13 |
|
|
"includes": ['yaml', 'logging', 'pickle', 'subprocess', 'SimpleXMLRPCServer', 'spread'], |
| 14 |
|
|
"dist_dir": "../bin", |
| 15 |
|
|
#"build_dir": "../tmp/build", |
| 16 |
|
|
} |
| 17 |
|
|
} |
| 18 |
|
|
|
| 19 |
|
|
setup( |
| 20 |
|
|
|
| 21 |
|
|
version = '0.0.1', |
| 22 |
|
|
name = 'MapiContactsDumper', |
| 23 |
|
|
description = 'Erstellt Winprint HylaFAX-kompatibles Adressbuch aus MAPI-Contact-Folder', |
| 24 |
|
|
|
| 25 |
|
|
console = ['MapiContactsDumper.py'], |
| 26 |
|
|
#options = opts, |
| 27 |
|
|
) |