-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- handle "abort" message from xmppBus
- Loading branch information
afabiani
committed
Sep 24, 2018
1 parent
2eba26f
commit 8ca3698
Showing
5 changed files
with
61 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,20 +6,20 @@ | |
|
||
""" | ||
To deploy a new version of the package on PyPi | ||
1. Update "version" | ||
1. Update "version" | ||
2. Update REAMDE.md Change Log and pip install version | ||
3. Follow the instruction at http://peterdowns.com/posts/first-time-with-pypi.html | ||
4. Deploy on pypitest: | ||
python setup.py sdist upload -r pypitest | ||
python setup.py bdist --format=gztar upload -r pypitest | ||
python setup.py bdist_wheel upload -r pypitest | ||
5. Deploy on pypi: | ||
python setup.py sdist upload -r pypi | ||
python setup.py bdist --format=gztar upload -r pypi | ||
python setup.py bdist_wheel upload -r pypi | ||
|
@@ -33,7 +33,7 @@ | |
|
||
setup( | ||
name = "wps-remote", | ||
version = "2.14.1", | ||
version = "2.14.2", | ||
author = "GeoServer Developers", | ||
author_email = "[email protected]", | ||
description = "A library that allows users to publish their executables as GeoServer WPS Processes through the XMPP protocol", | ||
|
@@ -55,16 +55,16 @@ | |
packages = find_packages('src'), | ||
package_data = { | ||
'': [ | ||
'xmpp_data/*.*', | ||
'xmpp_data/configs/*.*', | ||
'xmpp_data/*.*', | ||
'xmpp_data/configs/*.*', | ||
'xmpp_data/configs/myservice/*.*', | ||
'xmpp_data/configs/myservice/code/*.*', | ||
'xmpp_data/output/*.*', | ||
'xmpp_data/resource_dir/*.*', | ||
'xmpp_data/resource_dir/srtm_39_04/*.*', | ||
'xmpp_data/share/placemark', | ||
'xmpp_data/ssl/*.*', | ||
'xmpp_data/test/*.*', | ||
'xmpp_data/output/*.*', | ||
'xmpp_data/resource_dir/*.*', | ||
'xmpp_data/resource_dir/srtm_39_04/*.*', | ||
'xmpp_data/share/placemark', | ||
'xmpp_data/ssl/*.*', | ||
'xmpp_data/test/*.*', | ||
] | ||
}, | ||
include_package_data = True, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
python wpsagent.py -r /share/xmpp_data/configs/remote.config -s /share/xmpp_data/configs/myservice/service.config service & | ||
python wpsagent.py -r ./xmpp_data/configs/remote.config -s ./xmpp_data/configs/myservice/service.config service & | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters