├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── FindNumPy.cmake ├── example ├── example.jpg └── example.py ├── pyproject.toml ├── scripts └── windows_repair_wheel.py ├── setup.py └── src └── stag ├── StagModule.cpp └── __init__.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManfredStoiber/stag-python/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManfredStoiber/stag-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManfredStoiber/stag-python/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManfredStoiber/stag-python/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManfredStoiber/stag-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManfredStoiber/stag-python/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindNumPy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManfredStoiber/stag-python/HEAD/cmake/FindNumPy.cmake -------------------------------------------------------------------------------- /example/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManfredStoiber/stag-python/HEAD/example/example.jpg -------------------------------------------------------------------------------- /example/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManfredStoiber/stag-python/HEAD/example/example.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManfredStoiber/stag-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/windows_repair_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManfredStoiber/stag-python/HEAD/scripts/windows_repair_wheel.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManfredStoiber/stag-python/HEAD/setup.py -------------------------------------------------------------------------------- /src/stag/StagModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManfredStoiber/stag-python/HEAD/src/stag/StagModule.cpp -------------------------------------------------------------------------------- /src/stag/__init__.py: -------------------------------------------------------------------------------- 1 | from stag._core import * --------------------------------------------------------------------------------