Skip to content
This repository has been archived by the owner on May 11, 2022. It is now read-only.

Commit

Permalink
Merge pull request #11 from TheRenegadeCoder/pypi-deployment
Browse files Browse the repository at this point in the history
Add Travis CI PyPi Deployment
  • Loading branch information
jrg94 authored Aug 12, 2018
2 parents c8f9cd6 + 346c001 commit d959cdf
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
language: python
python:
- "3.6"

script:
- echo "Hello, World!"
# TODO: add tests

deploy:
provider: pypi
user: ${PYPI_USERNAME}
password: ${PYPI_PASSWORD}
on:
tags: true

notifications:
email: false

0 comments on commit d959cdf

Please sign in to comment.