_files = ( "__init__.py", "core.py", "device.py", ) options.defaults(peripheral=True, server=True) if options.central: _files += ("central.py",) if options.client: _files += ("client.py",) if options.peripheral: _files += ("peripheral.py",) if options.server: _files += ("server.py",) if options.l2cap: _files += ("l2cap.py",) if options.security: _files += ("security.py",) package("aioble", files=_files)