File: hook-autobahn.py

package info (click to toggle)
python-autobahn 23.1.2%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,424 kB
  • sloc: python: 38,620; javascript: 2,705; makefile: 899; ansic: 373; sh: 63
file content (34 lines) | stat: -rw-r--r-- 946 bytes parent folder | download | duplicates (2)
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
from PyInstaller.utils.hooks import collect_data_files

datas = collect_data_files('autobahn')

# Most of the following are found automatically by PyInstaller - but some are not!
# To be on the safe side, we list _all_ modules here, which needs to be kept in
# sync manually
[
    'autobahn',
    'autobahn.asyncio',
    'autobahn.asyncio.test',
    'autobahn.asyncio.xbr',
    'autobahn.nvx',
    'autobahn.nvx.test',
    'autobahn.rawsocket',
    'autobahn.rawsocket.test',
    'autobahn.test',
    'autobahn.twisted',
    'autobahn.twisted.test',
    'autobahn.twisted.testing',
    'autobahn.twisted.xbr',
    'autobahn.wamp',
    'autobahn.wamp.flatbuffers',
    'autobahn.wamp.gen',
    'autobahn.wamp.gen.schema',
    'autobahn.wamp.gen.wamp',
    'autobahn.wamp.gen.wamp.proto',
    'autobahn.wamp.test',
    'autobahn.websocket',
    'autobahn.websocket.test',
    'autobahn.xbr',
    'autobahn.xbr.templates',
    'autobahn.xbr.test'
]