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 d3adca2..356bbc8 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-M43-SNAPSHOT__ (in branch master) and __WSO2 Data Analytics Server (DAS) 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 (DAS) 4.0.0-M6__ (in branch master) for __Python 2.7.x__ and __Python 3.x__* Project Goals ----- @@ -53,7 +53,7 @@ Installing the Library from Source sm.shutdown() ``` - - For Siddhi CEP 4.0.0-M43-SNAPSHOT + - For Siddhi CEP 4.0.0-M53 ```python from PySiddhi3.core.SiddhiManager import SiddhiManager sm = SiddhiManager() @@ -76,7 +76,7 @@ Creating deployment wheel (for Linux) ----- 1. Install pre-requisites mentioned in `Installing the Library from Source` section. 2. Delete directory `build` if exist. -3. Goto source root and run `python setup.py bdist_wheel --plat-name linux-x86_64` +3. Goto source root and run `python setup.py bdist_wheel --plat-name manylinux1_x86_64` 4. Wheel file will be generated in `dist` directory. _Note: You need to use linux operating system to build linux wheels._ diff --git a/setup.py b/setup.py index c2518e3..4cb900d 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ def run(self): setup( name="PySiddhi3", - version="1.0.dev", + version="1.0.0", packages=filtered_packages, python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4', install_requires=["pyjnius", "future", "enum34 ; python_version<'3.4'"], @@ -56,10 +56,23 @@ 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 on `Siddhi CEP 3.1.0`.", 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 :: 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' + ] )