OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
lib
/
python3.6
/
dist-packages
/
skbuild
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 06:26:52 AM
rwxrwxr-x
📄
__init__.py
484 bytes
10/28/2024 05:59:06 AM
rw-r--r--
📁
__pycache__
-
10/28/2024 05:59:08 AM
rwxr-xr-x
📄
_version.py
162 bytes
10/28/2024 05:59:06 AM
rw-r--r--
📄
_version.pyi
172 bytes
10/28/2024 05:59:06 AM
rw-r--r--
📄
cmaker.py
29.78 KB
10/28/2024 05:59:06 AM
rw-r--r--
📁
command
-
10/28/2024 05:59:08 AM
rwxr-xr-x
📄
constants.py
4.77 KB
10/28/2024 05:59:06 AM
rw-r--r--
📄
exceptions.py
498 bytes
10/28/2024 05:59:06 AM
rw-r--r--
📁
platform_specifics
-
10/28/2024 05:59:08 AM
rwxr-xr-x
📄
py.typed
0 bytes
10/28/2024 05:59:06 AM
rw-r--r--
📁
resources
-
10/28/2024 05:59:08 AM
rwxr-xr-x
📄
setuptools_wrap.py
39.77 KB
10/28/2024 05:59:06 AM
rw-r--r--
📄
typing.py
235 bytes
10/28/2024 05:59:06 AM
rw-r--r--
📁
utils
-
10/28/2024 05:59:08 AM
rwxr-xr-x
Editing: exceptions.py
Close
""" This module defines exceptions commonly used in scikit-build. """ class SKBuildError(RuntimeError): """Exception raised when an error occurs while configuring or building a project. """ class SKBuildInvalidFileInstallationError(SKBuildError): """Exception raised when a file is being installed into an invalid location.""" class SKBuildGeneratorNotFoundError(SKBuildError): """Exception raised when no suitable generator is found for the current platform. """