X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/blobdiff_plain/a6bd66bd0791e3e8e562b531dcc26fba8ea21c3b..bc5e186b4ab5ad7e725d8fb811e49a87e89b9ce0:/setup.py diff --git a/setup.py b/setup.py index 04fa21b..aace60a 100755 --- a/setup.py +++ b/setup.py @@ -19,13 +19,14 @@ 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', author='Adafruit Industries', author_email='circuitpython@adafruit.com', - python_requires='>=3.6.0', + python_requires='>=3.4.0', url='https://github.com/adafruit/Adafruit_Blinka', package_dir={'': 'src'}, packages=[ @@ -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 @@ -48,7 +48,7 @@ setup( 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: Implementation :: MicroPython', ], )