Last active
August 16, 2017 08:40
-
-
Save andykuszyk/c328e9a42cd2775e0315f088e1907a34 to your computer and use it in GitHub Desktop.
Revisions
-
andykuszyk renamed this gist
Aug 16, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
andykuszyk renamed this gist
Aug 16, 2017 . 1 changed file with 1 addition and 0 deletions.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 @@ -1,3 +1,4 @@ * Put setup files in root of repo * Put `.pypirc` in home folder * Run `python setup.py sdist` in repo dir * Run `twine upload dist/*` in repo dir -
andykuszyk revised this gist
Aug 16, 2017 . 1 changed file with 1 addition and 8 deletions.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 @@ -3,11 +3,4 @@ index-servers = pypi [pypi] username= password= -
andykuszyk created this gist
Aug 16, 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,13 @@ [distutils] index-servers = pypi [pypi] username= password= 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,3 @@ * Put setup files in root of repo * Run `python setup.py sdist` in repo dir * Run `twine upload dist/*` in repo dir 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,2 @@ [metadata] description-file = README.md 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,13 @@ from distutils.core import setup setup( name = 'name', packages = ['name'], version = '0.0.1', description = 'desc', author = 'Andy Kuszyk', author_email = 'me@me.co.uk', url = 'https://github.com/andykuszyk/name', download_url = 'https://github.com/andykuszyk/name/archive/0.1.tar.gz', keywords = ['tag'], classifiers = [], )