mirror of
https://github.com/drewcassidy/quicktex.git
synced 2024-09-13 06:37:34 +00:00
16 lines
301 B
Python
16 lines
301 B
Python
import sys
|
|
|
|
try:
|
|
from skbuild import setup
|
|
except ImportError:
|
|
print(
|
|
"Please update pip, you need pip 10 or greater,\n"
|
|
" or you need to install the PEP 518 requirements in pyproject.toml yourself",
|
|
file=sys.stderr,
|
|
)
|
|
raise
|
|
|
|
setup(
|
|
cmake_install_dir='.'
|
|
)
|