Files
superqt/setup.py
Talley Lambert 70b1122c4e precommit
2021-04-24 09:08:23 -04:00

11 lines
253 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
PEP 517 doesnt support editable installs
so this file is currently here to support "pip install -e ."
"""
from setuptools import setup
setup(
use_scm_version={"write_to": "qrangeslider/_version.py"},
setup_requires=["setuptools_scm"],
)