mirror of
https://github.com/pyapp-kit/superqt.git
synced 2025-07-21 20:21:07 +02:00
11 lines
254 B
Python
11 lines
254 B
Python
"""
|
||
PEP 517 doesn’t support editable installs
|
||
so this file is currently here to support "pip install -e ."
|
||
"""
|
||
from setuptools import setup
|
||
|
||
setup(
|
||
use_scm_version={"write_to": "qtrangeslider/_version.py"},
|
||
setup_requires=["setuptools_scm"],
|
||
)
|