.travis.yml 704 B

1234567891011121314151617181920212223242526272829
  1. # Config file for automatic testing at travis-ci.org
  2. language: python
  3. python:
  4. - 3.6
  5. - 3.5
  6. - 3.4
  7. - 2.7
  8. # Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
  9. install: pip install -U tox-travis
  10. # Command to run tests, e.g. python setup.py test
  11. script: tox
  12. # Assuming you have installed the travis-ci CLI tool, after you
  13. # create the Github repo and add it to Travis, run the
  14. # following command to finish PyPI deployment setup:
  15. # $ travis encrypt --add deploy.password
  16. deploy:
  17. provider: pypi
  18. distributions: sdist bdist_wheel
  19. user: theenglishway
  20. password:
  21. secure: PLEASE_REPLACE_ME
  22. on:
  23. tags: true
  24. repo: theenglishway/twhatter
  25. python: 3.6