Refactor: Split config objects to Gui and Probe
[mentor.git] / setup.py
blob4efb32a1c24ed430a074f247f9ed5c862dc21685
1 #!/bin/env python
2 from distutils.core import setup
3 import sys
4 import py2exe
6 # hack to import from src
7 # TODO see how other do it
8 sys.path.append("src")
11 setup(version="0.0.1"
12 , description="Flash-card application"
13 , name="Mentor"
14 , windows=["src/mentor.py"]
15 , console=["src/probe.py"]
16 , zipfile = "lib/shared.zip"
17 , options={"py2exe":{"includes":["sip"], "compressed": 1, "bundle_files": 1}}