-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·51 lines (44 loc) · 1.1 KB
/
setup.py
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
# --------------------------------------------------
# File Name: setup_0.63.py
# Purpose:
# Creation Date: 20-11-2015
# Last Modified: Wed, Jan 25, 2017 2:40:50 PM
# Author(s): The DeepSEQ Team, University of Nottingham UK
# Copyright 2015 The Author(s) All Rights Reserved
# Credits:
# --------------------------------------------------
#!/usr/bin/python
# -*- coding: utf-8 -*-
from distutils.core import setup
import py2exe
import sys
sys.path.append('modules')
setup(console=['getmodels.py'
, 'minUPgui.py'
, 'mincontrol.py'
, 'mincontrol_dev.py'
, 'minUP.py'
],
options = {'py2exe':
{ 'includes':
[ 'h5py.*'
, "psutil.*"
, 'urlparse.*'
, 'cython.*'
, 'appdirs.*'
, 'packaging.*'
, 'twisted.*'
]
, 'dll_excludes':
[ 'MSVCP90.dll'
, 'libgobject-2.0-0.dll'
, 'libglib-2.0-0.dll'
, 'libgthread-2.0-0.dll'
]
, 'excludes':
[ 'IPython.*'
, 'tcl.*'
, 'Tkinter.*'
, 'scipy.*'
]
}})