From 5b19d4af251d677ddc8fc8bcd2532bff90322bb3 Mon Sep 17 00:00:00 2001 From: Roger Light Date: Sun, 16 Jun 2013 23:40:15 +0100 Subject: [PATCH] Fix setup.py for new packages. --- setup.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index 3d52d53..a8b275c 100644 --- a/setup.py +++ b/setup.py @@ -1,20 +1,19 @@ from sys import version from distutils.core import setup -setup(name='mosquitto', - version='1.1.1', +setup(name='paho`', + version='0.9.0', description='MQTT version 3.1 client class', author='Roger Light', author_email='roger@atchoo.org', - url='http://mosquitto.org/', - download_url='http://mosquitto.org/files/', - license='BSD License', - py_modules=['mosquitto'], - + url='http://eclipse.org/paho', + # FIXME license='Eclipse Public License', + package_dir={'': 'src'}, + packages=['paho', 'paho.mqtt'], classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', - 'License :: OSI Approved :: BSD License', + # FIXME 'License :: OSI Approved :: BSD License', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', -- 2.39.5