Skip to content

Commit 028013b

Browse files
committed
Update setup.py for pypa publish.
1 parent 65320a3 commit 028013b

File tree

1 file changed

+24
-13
lines changed

1 file changed

+24
-13
lines changed

setup.py

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,29 @@
22
use_setuptools()
33
from setuptools import setup
44

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+
517
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"]
1930
)

0 commit comments

Comments
 (0)