mirror of
https://github.com/pyapp-kit/superqt.git
synced 2025-09-05 01:00:20 +02:00
* style: ruff fixes * style: no implicit optional * keep mypy manual * build: add fake setup.py * build: use hatch * update ruff * update ruff settings * chore: merge * smaller sdist * fix: fix qfont typing * fix types again * add toc permalink * ignore setup.py from sdist
30 lines
669 B
Python
30 lines
669 B
Python
import sys
|
|
|
|
sys.stderr.write(
|
|
"""
|
|
===============================
|
|
Unsupported installation method
|
|
===============================
|
|
superqt does not support installation with `python setup.py install`.
|
|
Please use `python -m pip install .` instead.
|
|
"""
|
|
)
|
|
sys.exit(1)
|
|
|
|
|
|
# The below code will never execute, however GitHub is particularly
|
|
# picky about where it finds Python packaging metadata.
|
|
# See: https://github.com/github/feedback/discussions/6456
|
|
#
|
|
# To be removed once GitHub catches up.
|
|
|
|
setup( # noqa: F821
|
|
name="superqt",
|
|
install_requires=[
|
|
"packaging",
|
|
"pygments>=2.4.0",
|
|
"qtpy>=1.1.0",
|
|
"typing-extensions",
|
|
],
|
|
)
|