From 09dbc7589b35963be1835ed58dcfd09d4d5c3ccc Mon Sep 17 00:00:00 2001 From: Devendra Date: Thu, 8 May 2014 04:08:48 +0530 Subject: adding packaging for pushing to pip --- python/examples/pubnub-console/setup.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 python/examples/pubnub-console/setup.py (limited to 'python/examples/pubnub-console/setup.py') diff --git a/python/examples/pubnub-console/setup.py b/python/examples/pubnub-console/setup.py new file mode 100644 index 0000000..1ef09be --- /dev/null +++ b/python/examples/pubnub-console/setup.py @@ -0,0 +1,26 @@ +from setuptools import setup, find_packages + +setup( + name='pubnub-console', + version='3.5.0-beta', + description='PubNub Developer Console', + author='Stephen Blum', + author_email='support@pubnub.com', + url='http://pubnub.s3.amazonaws.com/pip/pubnub-3.3.5.tar.gz', + scripts=['pubnub-console'], + license='MIT', + classifiers=( + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'Programming Language :: Python', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Software Development :: Libraries :: Python Modules', + ), + install_requires=[ + 'pubnub==3.5.0-beta', + 'cmd2>=0.6.7', + ], + zip_safe=False, +) -- cgit v1.2.3 From 1607828ef5d2ef6c3ce357f83f53ea109be02182 Mon Sep 17 00:00:00 2001 From: Devendra Date: Thu, 8 May 2014 04:12:28 +0530 Subject: updating package urls --- python/examples/pubnub-console/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/examples/pubnub-console/setup.py') diff --git a/python/examples/pubnub-console/setup.py b/python/examples/pubnub-console/setup.py index 1ef09be..d46314e 100644 --- a/python/examples/pubnub-console/setup.py +++ b/python/examples/pubnub-console/setup.py @@ -6,7 +6,7 @@ setup( description='PubNub Developer Console', author='Stephen Blum', author_email='support@pubnub.com', - url='http://pubnub.s3.amazonaws.com/pip/pubnub-3.3.5.tar.gz', + url='https://github.com/pubnub/python/raw/async/python/examples/pubnub-console/dist/pubnub-console-3.5.0-beta.tar.gz', scripts=['pubnub-console'], license='MIT', classifiers=( -- cgit v1.2.3 From 75033e11a429b52b0366d63bdd8f81b795a7145d Mon Sep 17 00:00:00 2001 From: Devendra Date: Sun, 15 Jun 2014 10:23:16 +0530 Subject: fixing customer issue, making changes to dev console to print pretty --- python/examples/pubnub-console/setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'python/examples/pubnub-console/setup.py') diff --git a/python/examples/pubnub-console/setup.py b/python/examples/pubnub-console/setup.py index d46314e..e5a06ad 100644 --- a/python/examples/pubnub-console/setup.py +++ b/python/examples/pubnub-console/setup.py @@ -2,11 +2,11 @@ from setuptools import setup, find_packages setup( name='pubnub-console', - version='3.5.0-beta', + version='3.5.0-beta-1', description='PubNub Developer Console', author='Stephen Blum', author_email='support@pubnub.com', - url='https://github.com/pubnub/python/raw/async/python/examples/pubnub-console/dist/pubnub-console-3.5.0-beta.tar.gz', + url='http://pubnub.com', scripts=['pubnub-console'], license='MIT', classifiers=( @@ -21,6 +21,7 @@ setup( install_requires=[ 'pubnub==3.5.0-beta', 'cmd2>=0.6.7', + 'pygments >= 1.6' ], zip_safe=False, ) -- cgit v1.2.3 From 43162745c37f1e3f8f6b9c102f685a765f7fbc49 Mon Sep 17 00:00:00 2001 From: Devendra Date: Sun, 15 Jun 2014 10:44:12 +0530 Subject: changing dependencies --- python/examples/pubnub-console/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/examples/pubnub-console/setup.py') diff --git a/python/examples/pubnub-console/setup.py b/python/examples/pubnub-console/setup.py index e5a06ad..c08be33 100644 --- a/python/examples/pubnub-console/setup.py +++ b/python/examples/pubnub-console/setup.py @@ -19,7 +19,7 @@ setup( 'Topic :: Software Development :: Libraries :: Python Modules', ), install_requires=[ - 'pubnub==3.5.0-beta', + 'pubnub==3.5.0-beta-1', 'cmd2>=0.6.7', 'pygments >= 1.6' ], -- cgit v1.2.3 From 819dbedf0904b81e866ea6d27219608167d8b8ca Mon Sep 17 00:00:00 2001 From: Devendra Date: Mon, 16 Jun 2014 23:40:07 +0530 Subject: version changes --- python/examples/pubnub-console/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/examples/pubnub-console/setup.py') diff --git a/python/examples/pubnub-console/setup.py b/python/examples/pubnub-console/setup.py index c08be33..a9fa506 100644 --- a/python/examples/pubnub-console/setup.py +++ b/python/examples/pubnub-console/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='pubnub-console', - version='3.5.0-beta-1', + version='3.5.0', description='PubNub Developer Console', author='Stephen Blum', author_email='support@pubnub.com', @@ -19,7 +19,7 @@ setup( 'Topic :: Software Development :: Libraries :: Python Modules', ), install_requires=[ - 'pubnub==3.5.0-beta-1', + 'pubnub>=3.5.0', 'cmd2>=0.6.7', 'pygments >= 1.6' ], -- cgit v1.2.3