From 5d0072fec516f08eccaee28bda1e9005b1f94506 Mon Sep 17 00:00:00 2001 From: madhawav Date: Fri, 1 Sep 2017 15:38:11 +0530 Subject: [PATCH] Test deployment version --- LICENSE => LICENSE.txt | 0 README.md | 2 +- setup.py | 18 ++++++++++++++++-- 3 files changed, 17 insertions(+), 3 deletions(-) rename LICENSE => LICENSE.txt (100%) diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt diff --git a/README.md b/README.md index cfde387..d70d1fb 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ The scope of this project is to develop a Python Wrapper on Siddhi CEP Library. This is currently a work in progress, as a project for Google Summer of Code 2017 Program. -*Note: Currently the API is configured with __Siddhi CEP 3.1.0__ (in branch 3.x), __Siddhi CEP 4.0.0-M53__ (in branch master) and __WSO2 Data Analytics Server 4.0.0-M6-SNAPSHOT__ (in branch master) for __Python 2.7.x__ and __Python 3.x__* +*Note: Currently the API is configured with __Siddhi CEP 3.1.0__ (in branch 3.x), __Siddhi CEP 4.0.0-M53__ (in branch master) and __WSO2 Data Analytics Server 4.0.0-M6__ (in branch master) for __Python 2.7.x__ and __Python 3.x__* Project Goals ----- diff --git a/setup.py b/setup.py index d0cb670..f9572bd 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ def run(self): setup( name="PySiddhi4", - version="1.0.0rc1", + version="1.0.0rc3", packages=filtered_packages, python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4', install_requires=["requests","pyjnius", "future", "enum34 ; python_version<'3.4'"], @@ -56,10 +56,24 @@ def run(self): # metadata for upload to PyPI author="WSO2", author_email="dev@wso2.org", - description="Distribution of Siddhi CEP Python Wrapper", + description="Python wrapper for `Siddhi CEP 4.0.0-M53` and `WSO2 Data Analytics Server 4.0.0-M6`.", license="Apache2", cmdclass={ 'install': PostInstallCommand, }, url="https://github.com/wso2/PySiddhi", + classifiers=[ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: Apache Software License', + 'Natural Language :: English', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Topic :: Software Development :: Libraries :: Java Libraries' + ] )