From b8e48e2f91a0c6649718742b6f8756cddcba7a88 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Thu, 28 Jun 2018 12:38:34 -0700 Subject: [PATCH] Install setuptools_scm --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 04fa21b..d3f300e 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,8 @@ with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f: setup( name='Adafruit-Blinka', - use_scm_version=True + use_scm_version=True, + setup_requires=["setuptools_scm"], description='CircuitPython APIs for non-CircuitPython versions of Python such as CPython on Linux and MicroPython.', long_description=long_description, long_description_content_type='text/x-rst', @@ -40,7 +41,6 @@ setup( # If your package is a single module, use this instead of 'packages': py_modules=['bitbangio', 'board', 'busio', 'digitalio'], install_requires=['Adafruit-GPIO'], - include_package_data=True, license='MIT', classifiers=[ # Trove classifiers -- 2.49.0