├── .copier-answers.yml ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── build.yml │ ├── check-release.yml │ ├── enforce-label.yml │ ├── playwright-update.yml │ ├── prep-release.yml │ ├── publish-release.yml │ ├── rtd-preview.yml │ └── ui-tests.yml ├── .gitignore ├── .prettierignore ├── .readthedocs.yaml ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE.md ├── docs ├── build-environment.yml ├── changelog.md ├── conf.py ├── configuration.md ├── deploy.md ├── environment.yml ├── index.md ├── installation.md ├── migration.md └── xeus-python.svg ├── environment.yml ├── install.json ├── jupyterlite_xeus_python ├── __init__.py ├── build.py └── env_build_addon.py ├── package.json ├── pyproject.toml ├── setup.py ├── src ├── declarations.d.ts └── index.ts ├── style ├── base.css ├── index.css ├── index.js └── logos │ ├── python-logo-32x32.png │ └── python-logo-64x64.png ├── tests ├── environment-1.yml ├── environment-2.yml ├── test_package │ ├── environment-3.yml │ ├── pyproject.toml │ └── test_package │ │ ├── __init__.py │ │ └── hey.py └── test_xeus_python_env.py ├── tsconfig.json ├── ui-tests ├── .yarnrc.yml ├── build.py ├── jupyter-lite.json ├── jupyter_lite_config.json ├── package.json ├── playwright.config.js ├── test │ ├── execute.test.ts │ ├── files.test.ts │ ├── general.test.ts │ ├── general.test.ts-snapshots │ │ ├── launcher-chromium-linux.png │ │ └── launcher-firefox-linux.png │ └── utils.ts └── yarn.lock ├── webpack.config.js ├── worker.webpack.config.js └── yarn.lock /.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.copier-answers.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.github/workflows/check-release.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.github/workflows/enforce-label.yml -------------------------------------------------------------------------------- /.github/workflows/playwright-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.github/workflows/playwright-update.yml -------------------------------------------------------------------------------- /.github/workflows/prep-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.github/workflows/prep-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/rtd-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.github/workflows/rtd-preview.yml -------------------------------------------------------------------------------- /.github/workflows/ui-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.github/workflows/ui-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.prettierignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/RELEASE.md -------------------------------------------------------------------------------- /docs/build-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/docs/build-environment.yml -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | ```{include} ../CHANGELOG.md 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/docs/deploy.md -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/docs/migration.md -------------------------------------------------------------------------------- /docs/xeus-python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/docs/xeus-python.svg -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/environment.yml -------------------------------------------------------------------------------- /install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/install.json -------------------------------------------------------------------------------- /jupyterlite_xeus_python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/jupyterlite_xeus_python/__init__.py -------------------------------------------------------------------------------- /jupyterlite_xeus_python/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/jupyterlite_xeus_python/build.py -------------------------------------------------------------------------------- /jupyterlite_xeus_python/env_build_addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/jupyterlite_xeus_python/env_build_addon.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/setup.py -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/src/index.ts -------------------------------------------------------------------------------- /style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/style/base.css -------------------------------------------------------------------------------- /style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/style/index.css -------------------------------------------------------------------------------- /style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/style/index.js -------------------------------------------------------------------------------- /style/logos/python-logo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/style/logos/python-logo-32x32.png -------------------------------------------------------------------------------- /style/logos/python-logo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/style/logos/python-logo-64x64.png -------------------------------------------------------------------------------- /tests/environment-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/tests/environment-1.yml -------------------------------------------------------------------------------- /tests/environment-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/tests/environment-2.yml -------------------------------------------------------------------------------- /tests/test_package/environment-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/tests/test_package/environment-3.yml -------------------------------------------------------------------------------- /tests/test_package/pyproject.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "test-package" 3 | version = "0.1.0" 4 | -------------------------------------------------------------------------------- /tests/test_package/test_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_package/test_package/hey.py: -------------------------------------------------------------------------------- 1 | print("Hey") 2 | -------------------------------------------------------------------------------- /tests/test_xeus_python_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/tests/test_xeus_python_env.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/tsconfig.json -------------------------------------------------------------------------------- /ui-tests/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/ui-tests/.yarnrc.yml -------------------------------------------------------------------------------- /ui-tests/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/ui-tests/build.py -------------------------------------------------------------------------------- /ui-tests/jupyter-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/ui-tests/jupyter-lite.json -------------------------------------------------------------------------------- /ui-tests/jupyter_lite_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/ui-tests/jupyter_lite_config.json -------------------------------------------------------------------------------- /ui-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/ui-tests/package.json -------------------------------------------------------------------------------- /ui-tests/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/ui-tests/playwright.config.js -------------------------------------------------------------------------------- /ui-tests/test/execute.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/ui-tests/test/execute.test.ts -------------------------------------------------------------------------------- /ui-tests/test/files.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/ui-tests/test/files.test.ts -------------------------------------------------------------------------------- /ui-tests/test/general.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/ui-tests/test/general.test.ts -------------------------------------------------------------------------------- /ui-tests/test/general.test.ts-snapshots/launcher-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/ui-tests/test/general.test.ts-snapshots/launcher-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/general.test.ts-snapshots/launcher-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/ui-tests/test/general.test.ts-snapshots/launcher-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/ui-tests/test/utils.ts -------------------------------------------------------------------------------- /ui-tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/ui-tests/yarn.lock -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/webpack.config.js -------------------------------------------------------------------------------- /worker.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/worker.webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/xeus-python-kernel/HEAD/yarn.lock --------------------------------------------------------------------------------