Skip to content

Commit

Permalink
Test deployment version
Browse files Browse the repository at this point in the history
  • Loading branch information
madhawav committed Sep 1, 2017
1 parent de3c556 commit 5d0072f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----
Expand Down
18 changes: 16 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'"],
Expand All @@ -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'
]
)

0 comments on commit 5d0072f

Please sign in to comment.