Skip to content

Commit

Permalink
Add Travis PyPI deployment support (#3)
Browse files Browse the repository at this point in the history
Add Travis PyPI deployment support
  • Loading branch information
jiangk authored Jun 9, 2017
1 parent 66dc540 commit e534bd7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
.tox/
.cache/

build/
dist/
*.egg-info
13 changes: 11 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
language: python
sudo: false
env:
- TOX_ENV=py27
- TOX_ENV=py27
install:
- pip install tox
- pip install tox
script: tox -e $TOX_ENV
deploy:
provider: pypi
user: jiangk
password:
secure: VtLUZu3b9aiqhZ+zhsvnWv0kqNE9hrUgmak2UhV+ymLMcNJIYve2QMXGz7iZbi2KqRUcQSF9DDoupSKINz3HAolXmAr3DB4T+wNlZqa57XQ/vL3VzZci0N5JmzhZbexRdXxA13HywlaiOSn85WtAIU0txhLPQmBeC2BNk9gqiGg1CZ1iXg8DiXzadgq33oRHWdbzFSZGPhpDmVmQxN0j7XrSQunevbgBVWQ/QMZEGGtUTz5JtK4smo/z9tM4hqUzoVdVsuBZU3p9yH+wIzU+2FucRDWeY0zE/nNPDgeUaDkbE++hDWuYfiz/DBIOwv0UiSHw0hCJjfY5yfpPAtgtC/YC9Kny8fBkOfz8wvcrlbaod32JPDX+JiJoDTlpUePYmq58nd/euhW8rJiLB7rxhP7GitYibClgpQf1cWLfHt8SU4MSom0gk4KfjcTxwEKbIpj8Xnj5Hxo5g9P8lwYaZTQ6zOFpthzBQ7sEGAo18LwjaRvLz/OIyu6QHfLH9a38aBumpBROXfBF4ftwioNSj5gxxR3FO5i0wG+KVkzlSYQNLcukHeMPzh8mDehBJZ5ebd+5tuv8siimAO8+8h4xpssY6rOMQaz91doS5gRDBSvaSjukA76I7fg5GdpxfTlyvz/pXMlDCFp2c9SLOxmLg7emrFNIEEQgtQd+YIzbSng=
on:
tags: true
distributions: sdist bdist_wheel
repo: google/pyu2f
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

setuptools.setup(
name='pyu2f',
version='HEAD',
version='0.1.0',
description='U2F host library for interacting with a U2F device over USB.',
long_description='pyu2f is a python based U2F host library for Linux, '
'Windows, and MacOS. It provides functionality for '
Expand Down

0 comments on commit e534bd7

Please sign in to comment.