Adafruit_Python_seesaw/setup.py
2017-11-01 16:26:24 -04:00

30 lines
No EOL
1.3 KiB
Python

try:
# Try using ez_setup to install setuptools if not already installed.
from ez_setup import use_setuptools
use_setuptools()
except ImportError:
# Ignore import error and assume Python 3 which already has setuptools.
pass
from setuptools import setup, find_packages
classifiers = ['Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: System :: Hardware']
setup(name = 'Adafruit_seesaw',
version = '1.0',
author = 'Dean Miller',
author_email = 'dean@adafruit.com',
description = 'Python library to use the seesaw helper IC with raspberry pi or other linux boards.',
license = 'MIT',
classifiers = classifiers,
url = 'https://github.com/adafruit/Adafruit_Python_seesaw',
dependency_links = ['https://github.com/adafruit/Adafruit_Python_GPIO/tarball/master#egg=Adafruit-GPIO-0.6.5'],
install_requires = ['Adafruit-GPIO>=0.6.5', 'Adafruit-bitfield>=1.5'],
packages = find_packages())