Adafruit-Motor-HAT-Python-L.../setup.py
Your Name 7d1a7a66f7 init
2015-01-23 21:03:22 +00:00

14 lines
657 B
Python

from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(name = 'Adafruit_MotorHAT',
version = '1.0.0',
author = 'Limor Fried',
author_email = 'support@adafruit.com',
description = 'Library for Adafruit Motor HAT',
license = 'MIT',
url = 'https://github.com/adafruit/Adafruit_Python_MotorHAT/',
dependency_links = ['https://github.com/adafruit/Adafruit_Python_GPIO/tarball/master#egg=Adafruit-GPIO-0.7'],
install_requires = ['Adafruit-GPIO>=0.7'],
packages = find_packages())