Skip to content

Commit

Permalink
Making translate subpackage into a proper package.
Browse files Browse the repository at this point in the history
- Adding README, setup.py, MANIFEST.in, .coveragerc and tox.ini
- Adding google-cloud-translate as a dependency to the umbrella
  package
- Adding the translate subdirectory into the list of packages
  for verifying the docs
- Incorporating the translate subdirectory into the umbrella
  coverage report
- Adding the translate only tox tests to the Travis config
- Adding {toxinidir}/../core as a dependency for the translate
  tox config
  • Loading branch information
dhermes committed Sep 26, 2016
1 parent 2be3c93 commit f80cdfc
Show file tree
Hide file tree
Showing 9 changed files with 169 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ script:
- (cd resource_manager && tox -e py27)
- (cd monitoring && tox -e py27)
- (cd vision && tox -e py27)
- (cd translate && tox -e py27)
- tox -e py34
- (cd core && tox -e py34)
- (cd bigtable && tox -e py34)
Expand All @@ -33,6 +34,7 @@ script:
- (cd resource_manager && tox -e py34)
- (cd monitoring && tox -e py34)
- (cd vision && tox -e py34)
- (cd translate && tox -e py34)
- tox -e lint
- tox -e cover
- (cd core && tox -e cover)
Expand All @@ -48,6 +50,7 @@ script:
- (cd resource_manager && tox -e cover)
- (cd monitoring && tox -e cover)
- (cd vision && tox -e cover)
- (cd translate && tox -e cover)
- tox -e system-tests
- tox -e system-tests3
- scripts/update_docs.sh
Expand Down
1 change: 1 addition & 0 deletions scripts/verify_included_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
'pubsub',
'resource_manager',
'storage',
'translate',
'vision',
)

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
'google-cloud-pubsub',
'google-cloud-resource-manager',
'google-cloud-storage',
'google-cloud-translate',
'google-cloud-vision',
]

Expand Down
7 changes: 7 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ deps =
{toxinidir}/resource_manager
{toxinidir}/monitoring
{toxinidir}/vision
{toxinidir}/translate
pytest
covercmd =
py.test --quiet \
Expand Down Expand Up @@ -102,6 +103,12 @@ covercmd =
--cov-append \
--cov-config {toxinidir}/.coveragerc \
vision/unit_tests
py.test --quiet \
--cov=google.cloud \
--cov=unit_tests \
--cov-append \
--cov-config {toxinidir}/.coveragerc \
translate/unit_tests
coverage report --show-missing --fail-under=100

[testenv]
Expand Down
11 changes: 11 additions & 0 deletions translate/.coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[run]
branch = True

[report]
fail_under = 100
show_missing = True
exclude_lines =
# Re-enable the standard pragma
pragma: NO COVER
# Ignore debug-only repr
def __repr__
4 changes: 4 additions & 0 deletions translate/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include README.rst
graft google
graft unit_tests
global-exclude *.pyc
44 changes: 44 additions & 0 deletions translate/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
Python Client for Google Translate
==================================

Python idiomatic client for `Google Translate`_

.. _Google Translate: https://cloud.google.com/translate/

- `Homepage`_
- `API Documentation`_

.. _Homepage: https://googlecloudplatform.github.io/google-cloud-python/
.. _API Documentation: http://googlecloudplatform.github.io/google-cloud-python/

Quick Start
-----------

::

$ pip install --upgrade google-cloud-translate

Authentication
--------------

With ``google-cloud-python`` we try to make authentication as painless as
possible. Check out the `Authentication section`_ in our documentation to
learn more. You may also find the `authentication document`_ shared by all
the ``google-cloud-*`` libraries to be helpful.

.. _Authentication section: http://google-cloud-python.readthedocs.io/en/latest/google-cloud-auth.html
.. _authentication document: https://github.com/GoogleCloudPlatform/gcloud-common/tree/master/authentication

Using the API
-------------

With the Google `Translate`_ API (`Translate API docs`_), you can
dynamically translate text between thousands of language pairs.

.. _Translate: https://cloud.google.com/translate/
.. _Translate API docs: https://cloud.google.com/translate/docs/apis

See the ``google-cloud-python`` API `Translate documentation`_ to learn
how to translate text using this library.

.. _Translate documentation: https://google-cloud-python.readthedocs.io/en/stable/translate-usage.html
68 changes: 68 additions & 0 deletions translate/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import os

from setuptools import find_packages
from setuptools import setup


PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__))

with open(os.path.join(PACKAGE_ROOT, 'README.rst')) as file_obj:
README = file_obj.read()

# NOTE: This is duplicated throughout and we should try to
# consolidate.
SETUP_BASE = {
'author': 'Google Cloud Platform',
'author_email': 'jjg+google-cloud-python@google.com',
'scripts': [],
'url': 'https://github.com/GoogleCloudPlatform/google-cloud-python',
'license': 'Apache 2.0',
'platforms': 'Posix; MacOS X; Windows',
'include_package_data': True,
'zip_safe': False,
'classifiers': [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet',
],
}


REQUIREMENTS = [
'google-cloud-core',
]

setup(
name='google-cloud-translate',
version='0.20.0dev',
description='Python Client for Google Translate',
long_description=README,
namespace_packages=[
'google',
'google.cloud',
],
packages=find_packages(),
install_requires=REQUIREMENTS,
**SETUP_BASE
)
30 changes: 30 additions & 0 deletions translate/tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[tox]
envlist =
py27,py34,py35,cover

[testing]
deps =
{toxinidir}/../core
pytest
covercmd =
py.test --quiet \
--cov=google.cloud.translate \
--cov=unit_tests \
--cov-config {toxinidir}/.coveragerc \
unit_tests

[testenv]
commands =
py.test --quiet {posargs} unit_tests
deps =
{[testing]deps}

[testenv:cover]
basepython =
python2.7
commands =
{[testing]covercmd}
deps =
{[testenv]deps}
coverage
pytest-cov

0 comments on commit f80cdfc

Please sign in to comment.