2 # -*- coding: utf-8 -*-
4 # Note: To use the 'upload' functionality of this file, you must:
11 from setuptools import setup, find_packages
13 here = os.path.abspath(os.path.dirname(__file__))
15 # Import the README and use it as the long-description.
16 # Note: this will only work if 'README.md' is present in your MANIFEST.in file!
17 with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
18 long_description = '\n' + f.read()
21 name='Adafruit-Blinka',
23 setup_requires=["setuptools_scm"],
24 description='CircuitPython APIs for non-CircuitPython versions of Python such as CPython on Linux and MicroPython.',
25 long_description=long_description,
26 long_description_content_type='text/x-rst',
27 author='Adafruit Industries',
28 author_email='circuitpython@adafruit.com',
29 python_requires='>=3.4.0',
30 url='https://github.com/adafruit/Adafruit_Blinka',
31 package_dir={'': 'src'},
32 packages=find_packages("src"),
33 # If your package is a single module, use this instead of 'packages':
34 py_modules=['bitbangio', 'board', 'busio', 'digitalio', 'micropython'],
35 install_requires=['Adafruit-GPIO'],
39 # Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
40 'License :: OSI Approved :: MIT License',
41 'Programming Language :: Python',
42 'Programming Language :: Python :: 3',
43 'Programming Language :: Python :: 3.4',
44 'Programming Language :: Python :: Implementation :: MicroPython',