quicktex/setup.py

16 lines
301 B
Python
Raw Normal View History

2021-03-04 10:21:16 +00:00
import sys
2022-04-05 07:15:59 +00:00
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
2021-03-04 10:21:16 +00:00
setup(
2022-04-05 07:15:59 +00:00
cmake_install_dir='.'
2021-03-04 10:21:16 +00:00
)