Files
superqt/setup.py
Talley Lambert 9fde133977 rename
2021-04-24 21:07:40 -04:00

11 lines
254 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": "qtrangeslider/_version.py"},
setup_requires=["setuptools_scm"],
)