├── .github ├── dependabot.yml └── workflows │ └── build_wheel.yml ├── .gitignore ├── CMakeLists.txt ├── External_OpenSSL.cmake.in ├── External_libsodium.cmake.in ├── External_libuuid.cmake.in ├── LICENSE ├── README.md ├── bcryptgen.patch.in ├── cmake ├── FindOpenSSL.cmake └── wheelConfig.cmake.in ├── commoncrypto.patch.in ├── kernels ├── xpython-raw │ ├── kernel.json.in │ ├── logo-32x32.png │ └── logo-64x64.png └── xpython │ ├── kernel.json.in │ ├── logo-32x32.png │ └── logo-64x64.png ├── pyproject.toml ├── pytest.ini ├── setup.py ├── test ├── test_notebook.ipynb └── test_notebook_raw.ipynb ├── xpython └── __init__.py └── xpython_launcher.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_wheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/.github/workflows/build_wheel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /External_OpenSSL.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/External_OpenSSL.cmake.in -------------------------------------------------------------------------------- /External_libsodium.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/External_libsodium.cmake.in -------------------------------------------------------------------------------- /External_libuuid.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/External_libuuid.cmake.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/README.md -------------------------------------------------------------------------------- /bcryptgen.patch.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/bcryptgen.patch.in -------------------------------------------------------------------------------- /cmake/FindOpenSSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/cmake/FindOpenSSL.cmake -------------------------------------------------------------------------------- /cmake/wheelConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/cmake/wheelConfig.cmake.in -------------------------------------------------------------------------------- /commoncrypto.patch.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/commoncrypto.patch.in -------------------------------------------------------------------------------- /kernels/xpython-raw/kernel.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/kernels/xpython-raw/kernel.json.in -------------------------------------------------------------------------------- /kernels/xpython-raw/logo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/kernels/xpython-raw/logo-32x32.png -------------------------------------------------------------------------------- /kernels/xpython-raw/logo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/kernels/xpython-raw/logo-64x64.png -------------------------------------------------------------------------------- /kernels/xpython/kernel.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/kernels/xpython/kernel.json.in -------------------------------------------------------------------------------- /kernels/xpython/logo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/kernels/xpython/logo-32x32.png -------------------------------------------------------------------------------- /kernels/xpython/logo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/kernels/xpython/logo-64x64.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/test/test_notebook.ipynb -------------------------------------------------------------------------------- /test/test_notebook_raw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/test/test_notebook_raw.ipynb -------------------------------------------------------------------------------- /xpython/__init__.py: -------------------------------------------------------------------------------- 1 | from .xpython_extension import launch 2 | 3 | -------------------------------------------------------------------------------- /xpython_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xeus-python-wheel/HEAD/xpython_launcher.py --------------------------------------------------------------------------------