Files
darkwater_python_640/setup.py
2016-01-08 09:11:16 +00:00

15 lines
657 B
Python

from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(name = 'Adafruit_MotorHAT',
version = '1.3.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())