|
2 | 2 | use_setuptools() |
3 | 3 | from setuptools import setup |
4 | 4 |
|
| 5 | +classifiers = ['Development Status :: 4 - Beta', |
| 6 | + 'Operating System :: POSIX :: Linux', |
| 7 | + 'Operating System :: Microsoft :: Windows', |
| 8 | + 'Operating System :: MacOS', |
| 9 | + 'License :: OSI Approved :: MIT License', |
| 10 | + 'Intended Audience :: Developers', |
| 11 | + 'Programming Language :: Python :: 2.7', |
| 12 | + 'Programming Language :: Python :: 3', |
| 13 | + 'Topic :: Software Development', |
| 14 | + 'Topic :: Home Automation', |
| 15 | + 'Topic :: System :: Hardware'] |
| 16 | + |
5 | 17 | setup( |
6 | | - name='adafruit-io', |
7 | | - version='1.0.0', |
8 | | - author='Justin Cooper', |
9 | | - author_email='justin@adafruit.com', |
10 | | - packages=['Adafruit_IO'], |
11 | | - url='http://pypi.python.org/pypi/adafruit-io/', |
12 | | - license='LICENSE.txt', |
13 | | - description='IO Client library for io.adafruit.com', |
14 | | - long_description=open('README.md').read(), |
15 | | - install_requires=[ |
16 | | - "requests", |
17 | | - "paho-mqtt" |
18 | | - ], |
| 18 | + name = 'adafruit-io', |
| 19 | + version = '1.0.0', |
| 20 | + author = 'Justin Cooper', |
| 21 | + author_email = 'justin@adafruit.com', |
| 22 | + packages = ['Adafruit_IO'], |
| 23 | + url = 'https://github.com/adafruit/io-client-python', |
| 24 | + license = 'MIT', |
| 25 | + keywords = 'Adafruit IO', |
| 26 | + classifiers = classifiers, |
| 27 | + description = 'Client library for Adafruit IO (http://io.adafruit.com/).', |
| 28 | + long_description = open('README.md').read(), |
| 29 | + install_requires = ["requests", "paho-mqtt"] |
19 | 30 | ) |
0 commit comments