[Python-modules-commits] [watson-developer-cloud] 05/05: source name
Luciano Bello
luciano at moszumanska.debian.org
Wed Dec 7 04:54:47 UTC 2016
This is an automated email from the git hooks/post-receive script.
luciano pushed a commit to branch master
in repository watson-developer-cloud.
commit 54d745a51843a3f67c80f00be3fbb766d5dca686
Author: Luciano Bello <luciano at debian.org>
Date: Tue Dec 6 23:54:40 2016 -0500
source name
---
debian/changelog | 4 +-
debian/control | 44 ++++++++--
debian/rules | 2 +-
setup.py | 2 +-
watson_developer_cloud.egg-info/PKG-INFO | 130 +++++++++++-----------------
watson_developer_cloud.egg-info/SOURCES.txt | 1 +
6 files changed, 94 insertions(+), 89 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 6560884..30d0f9d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-watson-developer-cloud (0.22.0-1) unstable; urgency=medium
+python-watson-developer-cloud (0.22.0-1) unstable; urgency=medium
* Initial release (Closes: #835111)
- -- Luciano Bello <luciano at debian.org> Sun, 27 Nov 2016 15:48:44 -0500
+ -- Luciano Bello <luciano at debian.org> Tue, 06 Dec 2016 23:03:26 -0500
diff --git a/debian/control b/debian/control
index 05c6244..34bb28c 100644
--- a/debian/control
+++ b/debian/control
@@ -1,4 +1,4 @@
-Source: watson-developer-cloud
+Source: python-watson-developer-cloud
Section: python
Priority: optional
Maintainer: Luciano Bello <luciano at debian.org>
@@ -14,19 +14,53 @@ Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-wats
Package: python-watson-developer-cloud
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}
-Suggests: python-watson-developer-cloud-doc
+Suggests:
Description: Python client library to use the IBM Watson Services (Python 2)
Python client library to quickly interface with various IBM Watson Cloud
- services.
+ services. It requires Watson Service Credentials.
+ .
+ The services supported are:
+ - AlchemyAPI Language service
+ - AlchemyAPI Vision service
+ - AlchemyData News service
+ - Conversation service
+ - Document Conversion service
+ - Language Translation service
+ - Language Translator service
+ - Natural Language Classifier service
+ - Personality Insights service
+ - Retrieve and Rank service
+ - Speech to Text service
+ - Text to Speech service
+ - Tone Analyzer service
+ - Tradeoff Analytics service
+ - Visual Recognition service
.
This package installs the library for Python 2.
Package: python3-watson-developer-cloud
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}
-Suggests: python-watson-developer-cloud-doc
+Suggests:
Description: Python client library to use the IBM Watson Services (Python 3)
Python client library to quickly interface with various IBM Watson Cloud
- services.
+ services. It requires Watson Service Credentials.
+ .
+ The services supported are:
+ - AlchemyAPI Language service
+ - AlchemyAPI Vision service
+ - AlchemyData News service
+ - Conversation service
+ - Document Conversion service
+ - Language Translation service
+ - Language Translator service
+ - Natural Language Classifier service
+ - Personality Insights service
+ - Retrieve and Rank service
+ - Speech to Text service
+ - Text to Speech service
+ - Tone Analyzer service
+ - Tradeoff Analytics service
+ - Visual Recognition service
.
This package installs the library for Python 3.
diff --git a/debian/rules b/debian/rules
index 0abd982..d649517 100755
--- a/debian/rules
+++ b/debian/rules
@@ -3,7 +3,7 @@
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1
-export PYBUILD_NAME=watson-developer-cloud
+export PYBUILD_NAME=python-watson-developer-cloud
%:
dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/setup.py b/setup.py
index a14b7fe..d2f8f10 100644
--- a/setup.py
+++ b/setup.py
@@ -37,7 +37,7 @@ try:
read_md = lambda f: convert(f, 'rst')
except ImportError:
print('warning: pypandoc module not found, could not convert Markdown to RST')
- read_md = lambda f: open(f, 'rb').read().decode(encoding='utf-8')
+ read_md = lambda f: open(f, 'r').read()
class PyTest(TestCommand):
diff --git a/watson_developer_cloud.egg-info/PKG-INFO b/watson_developer_cloud.egg-info/PKG-INFO
index 6e45498..bf6601d 100644
--- a/watson_developer_cloud.egg-info/PKG-INFO
+++ b/watson_developer_cloud.egg-info/PKG-INFO
@@ -6,106 +6,76 @@ Home-page: https://github.com/watson-developer-cloud/python-sdk
Author: Jeffrey Stylos
Author-email: jsstylos at us.ibm.com
License: Apache 2.0
-Description: Watson Developer Cloud Python SDK
- ---------------------------------
+Description: ## Watson Developer Cloud Python SDK
+ [![Build Status](https://travis-ci.org/watson-developer-cloud/python-sdk.svg)](https://travis-ci.org/watson-developer-cloud/python-sdk)
+ [![codecov.io](https://codecov.io/github/watson-developer-cloud/python-sdk/coverage.svg?branch=master)](https://codecov.io/github/watson-developer-cloud/python-sdk?branch=master)
+ [![Latest Stable Version](https://img.shields.io/pypi/v/watson-developer-cloud.svg)](https://pypi.python.org/pypi/watson-developer-cloud)
+ [![Download Times](https://img.shields.io/pypi/dm/watson-developer-cloud.svg)](https://pypi.python.org/pypi/watson-developer-cloud)
- |Build Status| |codecov.io| |Latest Stable Version| |Download Times|
+ Python client library to quickly get started with the various [Watson Developer Cloud][wdc] services.
- Python client library to quickly get started with the various `Watson
- Developer Cloud <http://www.ibm.com/watson/developercloud/>`__ services.
+ ## Installation
- Installation
- ------------
-
- To install, use ``pip`` or ``easy_install``:
-
- .. code:: bash
-
- $ pip install --upgrade watson-developer-cloud
+ To install, use `pip` or `easy_install`:
+ ```bash
+ $ pip install --upgrade watson-developer-cloud
+ ```
or
+ ```bash
+ $ easy_install --upgrade watson-developer-cloud
+ ```
- .. code:: bash
-
- $ easy_install --upgrade watson-developer-cloud
-
- Examples
- --------
-
- The
- `examples <https://github.com/watson-developer-cloud/python-sdk/tree/master/examples>`__
- folder has basic and advanced examples.
-
- Getting the Service Credentials
- -------------------------------
+ ## Examples
+ The [examples][examples] folder has basic and advanced examples.
- You will need the ``username`` and ``password`` credentials for each
- service. Service credentials are different from your Bluemix account
- username and password.
+ ## Getting the Service Credentials
+ You will need the `username` and `password` credentials for each service. Service credentials are different from your Bluemix account username and password.
- To get your service credentials, follow these steps: 1. Log in to
- Bluemix at https://bluemix.net.
+ To get your service credentials, follow these steps:
+ 1. Log in to Bluemix at https://bluemix.net.
- 1. Create an instance of the service:
+ 1. Create an instance of the service:
+ 1. In the Bluemix **Catalog**, select the Watson service you want to use. For example, select the Natural Language Classifier service.
+ 1. Under **Add Service**, type a unique name for the service instance in the Service name field. For example, type `my-service-name`. Leave the default values for the other options.
+ 1. Click **Use**.
- 1. In the Bluemix **Catalog**, select the Watson service you want to
- use. For example, select the Natural Language Classifier service.
- 2. Under **Add Service**, type a unique name for the service instance
- in the Service name field. For example, type ``my-service-name``.
- Leave the default values for the other options.
- 3. Click **Use**.
-
- 2. Copy your credentials:
-
- 1. On the left side of the page, click **Service Credentials** to
- view your service credentials.
- 2. Copy ``username`` and ``password`` from these service credentials.
-
- Python Version
- --------------
+ 1. Copy your credentials:
+ 1. On the left side of the page, click **Service Credentials** to view your service credentials.
+ 1. Copy `username` and `password` from these service credentials.
+ ## Python Version
Tested 👌 (lightly) on: Python from 2.7 to 3.5-dev (development branch).
- Python 2.6 is partially supported but generates InsecurePlatformWarnings
- (and other warnings), which can be ignored.
-
- CHANGELOG
- ---------
-
- See
- `CHANGELOG <https://github.com/watson-developer-cloud/python-sdk/blob/master/CHANGELOG.md>`__.
-
- Known Issues
- ------------
+ Python 2.6 is partially supported but generates InsecurePlatformWarnings (and other warnings), which can be ignored.
- There is a known incompatibility with this module with Python versions
- 3.x with Korean systems.
+ ## CHANGELOG
+ See [CHANGELOG][CHANGELOG.md].
- Dependencies
- ------------
+ ## Known Issues
+ There is a known incompatibility with this module with Python versions 3.x with Korean systems.
- - `requests <http://docs.python-requests.org/en/latest/>`__
- - `responses <https://github.com/getsentry/responses>`__ for testing
+ ## Dependencies
+ * [requests]
+ * [responses] for testing
- Contributing
- ------------
+ ## Contributing
+ See [CONTRIBUTING.md][CONTRIBUTING].
- See
- `CONTRIBUTING.md <https://github.com/watson-developer-cloud/python-sdk/blob/master/CONTRIBUTING.md>`__.
+ ## License
- License
- -------
+ This library is licensed under the [Apache 2.0 license][license].
- This library is licensed under the `Apache 2.0
- license <http://www.apache.org/licenses/LICENSE-2.0>`__.
+ [wdc]: http://www.ibm.com/watson/developercloud/
+ [vcap_environment]: http://www.ibm.com/watson/developercloud/doc/getting_started/gs-variables.shtml
+ [bluemix]: https://console.ng.bluemix.net
+ [pytest]: http://pytest.org/latest/
+ [responses]: https://github.com/getsentry/responses
+ [requests]: http://docs.python-requests.org/en/latest/
+ [examples]: https://github.com/watson-developer-cloud/python-sdk/tree/master/examples
+ [CONTRIBUTING]: https://github.com/watson-developer-cloud/python-sdk/blob/master/CONTRIBUTING.md
+ [CHANGELOG.md]: https://github.com/watson-developer-cloud/python-sdk/blob/master/CHANGELOG.md
- .. |Build Status| image:: https://travis-ci.org/watson-developer-cloud/python-sdk.svg
- :target: https://travis-ci.org/watson-developer-cloud/python-sdk
- .. |codecov.io| image:: https://codecov.io/github/watson-developer-cloud/python-sdk/coverage.svg?branch=master
- :target: https://codecov.io/github/watson-developer-cloud/python-sdk?branch=master
- .. |Latest Stable Version| image:: https://img.shields.io/pypi/v/watson-developer-cloud.svg
- :target: https://pypi.python.org/pypi/watson-developer-cloud
- .. |Download Times| image:: https://img.shields.io/pypi/dm/watson-developer-cloud.svg
- :target: https://pypi.python.org/pypi/watson-developer-cloud
+ [license]: http://www.apache.org/licenses/LICENSE-2.0
Keywords: alchemy datanews,language,vision,question and answer tone_analyzer,natural language classifier,retrieve and rank,tradeoff analytics,text to speech,language translation,language identification,concept expansion,machine translation,personality insights,message resonance,watson developer cloud,wdc,watson,ibm,dialog,user modeling,alchemyapi,alchemy,tone analyzer,speech to text,visual recognition
Platform: UNKNOWN
diff --git a/watson_developer_cloud.egg-info/SOURCES.txt b/watson_developer_cloud.egg-info/SOURCES.txt
index ebb90d7..6b045dc 100644
--- a/watson_developer_cloud.egg-info/SOURCES.txt
+++ b/watson_developer_cloud.egg-info/SOURCES.txt
@@ -1,6 +1,7 @@
LICENSE
MANIFEST.in
README.md
+setup.cfg
setup.py
examples/README.md
examples/__init__.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/watson-developer-cloud.git
More information about the Python-modules-commits
mailing list