aboutsummaryrefslogtreecommitdiffstats
path: root/release/mitmweb.spec
blob: b247ce5193e7846ce5ed8c2b0bc04dcfa8bbd88c (plain)
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
# -*- mode: python -*-

from glob import glob

a = Analysis(['./mitmweb'],
             hiddenimports=[],
             hookspath=None,
             runtime_hooks=None,
             excludes=None,
          )
a.datas = Tree(
  "./libmproxy/onboarding/templates",
  prefix="libmproxy/onboarding/templates"
)
a.datas += Tree(
  "./libmproxy/onboarding/static",
  prefix="libmproxy/onboarding/static"
)
a.datas += Tree(
  "./libmproxy/web/templates",
  prefix="libmproxy/web/templates"
)
a.datas += Tree(
  "./libmproxy/web/static",
  prefix="libmproxy/web/static"
)
pyz = PYZ(a.pure)
exe = EXE(pyz,
          a.scripts,
          a.binaries,
          a.zipfiles,
          a.datas,
          name='mitmweb',
          debug=False,
          strip=None,
          upx=True,
          console=True )