Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PySiddhi3 1.0.0 #6

Merged
merged 1 commit into from
Sep 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
6 changes: 3 additions & 3 deletions 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-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
-----
Expand Down Expand Up @@ -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()
Expand All @@ -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._
Expand Down
17 changes: 15 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="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'"],
Expand All @@ -56,10 +56,23 @@ def run(self):
# metadata for upload to PyPI
author="wso2",
author_email="[email protected]",
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'
]
)