14 lines
468 B
Python
14 lines
468 B
Python
#!/usr/bin/python
|
|
#
|
|
# These files have been made available online through a Creative Commons Attribution-ShareAlike 3.0 license.
|
|
# (http://creativecommons.org/licenses/by-sa/3.0/)
|
|
|
|
import setuptools
|
|
setuptools.setup(
|
|
name="grovepi6",
|
|
description="Drivers and examples for using the GrovePi in Python",
|
|
author="Dexter Industries",
|
|
url="http://www.dexterindustries.com/GrovePi/",
|
|
py_modules=['grovepi6'],
|
|
#install_requires=open('requirements.txt').readlines(),
|
|
)
|