Skip to content

Commit b3e145d

Browse files
committed
initial io client python library commit
0 parents  commit b3e145d

File tree

6 files changed

+14
-0
lines changed

6 files changed

+14
-0
lines changed

CHANGELOG.md

Whitespace-only changes.

LICENSE.txt

Whitespace-only changes.

MANIFEST.in

Whitespace-only changes.

README.md

Whitespace-only changes.

adafruit_io/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from distutils.core import setup
2+
3+
setup(
4+
name='Adafruit_IO',
5+
version='0.0.1',
6+
author='Justin Cooper',
7+
author_email='[email protected]',
8+
packages=['adafruit_io'],
9+
url='http://pypi.python.org/pypi/adafruit_io/',
10+
license='LICENSE.txt',
11+
description='IO Client library for io.adafruit.com',
12+
long_description=open('README.md').read(),
13+
install_requires=[],
14+
)

0 commit comments

Comments
 (0)