forked from adafruit/Adafruit_IO_Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
classifiers = ['Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Home Automation',
'Topic :: System :: Hardware']
setup(
name = 'adafruit-io',
version = '1.1.1',
author = 'Justin Cooper',
author_email = '[email protected]',
packages = ['Adafruit_IO'],
py_modules = ['ez_setup'],
url = 'https://github.com/adafruit/io-client-python',
license = 'MIT',
keywords = 'Adafruit IO',
classifiers = classifiers,
description = 'Client library for Adafruit IO (http://io.adafruit.com/).',
long_description = open('README.md').read(),
install_requires = ["requests", "paho-mqtt"]
)