a b/setup.py
1
from setuptools import setup
2
3
4
if __name__ == "__main__":
5
    try:
6
        setup(use_scm_version={"version_scheme": "no-guess-dev"})
7
    except Exception:
8
        print(
9
            "\n\nAn error occurred while building the project, "
10
            "please ensure you have the most updated version of setuptools, "
11
            "setuptools_scm and wheel with:\n"
12
            "   pip install -U setuptools setuptools_scm wheel\n\n"
13
        )
14
        raise