Created
September 7, 2017 10:29
-
-
Save andykuszyk/665174f886017278415f7d86547bc8c8 to your computer and use it in GitHub Desktop.
Revisions
-
andykuszyk created this gist
Sep 7, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ Encrypt your PyPi password using: ``` echo -n "password1" | travis encrypt --add deploy.password ``` in your root dir. **.travis.yml** ``` language: python python: - 3.5 script: - echo building... deploy: provider: pypi user: [username] password: secure: [encrypted-password] ```