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'
]
|