-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (61 loc) · 1.88 KB
/
Copy pathsetup.py
File metadata and controls
64 lines (61 loc) · 1.88 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
import sys
import os
from distutils.core import setup
try:
import py2exe
except:
pass
import scipy
here = os.path.abspath(os.path.dirname(__file__))
packagesNames = [
'phosher',
'phosher/asha',
'phosher/bb5',
'phosher/dct4',
'phosher/contentParsers',
'phosher/fat16',
'phosher/crypto',
'phosher/general' ]
packagesDirs = {
'phosher' : '.',
'phosher/asha' : "asha",
'phosher/bb5' : "bb5",
'phosher/dct4' : "dct4",
'phosher/contentParsers' : "contentParsers",
'phosher/fat16' : "fat16",
'phosher/crypto' : "crypto",
'phosher/general' : "general" }
dll_excludes = []
includes = []
excludes = []
setup(
options = {
"py2exe": {
"compressed": 2,
"optimize": 2,
"packages": ["phosher"],
"dll_excludes": dll_excludes,
"bundle_files": 2,
"dist_dir": "dist",
"xref": False,
"skip_archive": False,
"ascii": False,
"custom_boot_script": '',
}
},
name = "phosher",
version = "1.1",
description = "Kosher phones creating and researching scripts",
author = "Assaf Nativ",
author_email = "Nativ.Assaf@gmail.com",
packages = packagesNames,
package_dir = packagesDirs,
data_files = [('Lib\\site-packages', ('phosher.pth',))],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Research',
'License :: All rights reservedto Assaf Nativ',
'Programming Language :: Python :: 2.7' ],
keywords = 'Kosher, Phones, Nokia'
)