{"library":"py2app","title":"py2app","description":"py2app is a Python setuptools command that allows you to create standalone macOS application bundles (.app) from Python scripts, including all dependencies. The current version is 0.28.10, requiring Python >=3.10. It wraps py2applet and the py2app build command, with recipes for many popular third-party packages.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install py2app"],"cli":{"name":"py2applet","version":"usage: py2applet [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]"}},"imports":["from py2app.command import py2app"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"# setup.py\nfrom setuptools import setup\n\nAPP = ['hello.py']\nDATA_FILES = []\nOPTIONS = {}\n\nsetup(\n    app=APP,\n    data_files=DATA_FILES,\n    options={'py2app': OPTIONS},\n    setup_requires=['py2app'],\n)","lang":"python","description":"Minimal setup.py to build a macOS .app from hello.py. Run 'python setup.py py2app' to build.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}