1 """A setuptools based setup module.
 
   4 https://packaging.python.org/en/latest/distributing.html
 
   5 https://github.com/pypa/sampleproject
 
   8 from setuptools import setup, find_packages
 
  10 # To use a consistent encoding
 
  11 from codecs import open
 
  14 here = path.abspath(path.dirname(__file__))
 
  16 # Get the long description from the README file
 
  17 with open(path.join(here, "README.rst"), encoding="utf-8") as f:
 
  18     long_description = f.read()
 
  21     name="adafruit-circuitpython-displayio",
 
  23     setup_requires=["setuptools_scm"],
 
  24     description="displayio for Blinka",
 
  25     long_description=long_description,
 
  26     long_description_content_type="text/x-rst",
 
  27     # The project's main homepage.
 
  28     url="https://github.com/adafruit/Adafruit_CircuitPython_displayio",
 
  30     author="Adafruit Industries",
 
  31     author_email="circuitpython@adafruit.com",
 
  32     install_requires=["Adafruit-Blinka",],
 
  35     # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
 
  37         "Development Status :: 3 - Alpha",
 
  38         "Intended Audience :: Developers",
 
  39         "Topic :: Software Development :: Libraries",
 
  40         "Topic :: System :: Hardware",
 
  41         "License :: OSI Approved :: MIT License",
 
  42         "Programming Language :: Python :: 3",
 
  43         "Programming Language :: Python :: 3.4",
 
  44         "Programming Language :: Python :: 3.5",
 
  46     # What does your project relate to?
 
  47     keywords="adafruit blinka circuitpython micropython displayio lcd tft display pitft",
 
  48     # You can just specify the packages manually here if your project is
 
  49     # simple. Or you can use find_packages().
 
  50     # TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER,
 
  51     #       CHANGE `py_modules=['...']` TO `packages=['...']`
 
  52     py_modules=["adafruit_blinka_displayio"],