Skip to content
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
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,15 @@ install:

script:
- python3 -m nox --session "$NOXSESSION"

deploy:
on:
repo: googlemaps/google-maps-services-python
tag: true
python: '3.6' # only run this deploy once with python 3.6
provider: pypi
distributions: 'sdist bdist_wheel'
user: __token__ # api token encrypted within travis

notifications:
email: false
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ directions_result = gmaps.directions("Sydney Town Hall",
departure_time=now)
```

For more usage examples, check out [the tests](googlemaps/test/).
For more usage examples, check out [the tests](https://github.com/googlemaps/google-maps-services-python/tree/master/googlemaps/test).

## Features

Expand All @@ -137,11 +137,6 @@ instead of an API key.
# Generating documentation
$ nox -e docs

# Uploading a new release
$ easy_install wheel twine
$ python setup.py sdist bdist_wheel
$ twine upload dist/*

# Copy docs to gh-pages
$ nox -e docs && mv docs/_build/html generated_docs && git clean -Xdi && git checkout gh-pages

Expand Down