Loading .gitlab-ci.yml +1 −1 Original line number Diff line number Diff line variables: TWINE_USERNAME: SECURE TWINE_PASSWORD: SECURE TWINE_REPOSITORY_URL: https://pypi.org/legacy/ TWINE_REPOSITORY_URL: https://upload.pypi.org/legacy ANACONDA_USERNAME: SECURE ANACONDA_TOKEN: SECURE Loading README.md +37 −8 Original line number Diff line number Diff line # Python Package Template +-----+-----+ | docs |  | +-----+-----+ | tests | asdf | +-----+-----+ | package |     | +-----+-----+ <table> <tr> <td>Latest Release</td> <td><img src="https://img.shields.io/pypi/v/pypkgtemp.svg" alt="latest release" /></td> </tr> <td></td> <td><img src="https://anaconda.org/costrouc/pypkgtemp/badges/version.svg" alt="latest release" /></td> </tr> <tr> <td>Package Status</td> <td><img src="https://img.shields.io/pypi/status/pypkgtemps.svg" alt="status" /></td> </tr> <tr> <td>License</td> <td><img src="https://img.shields.io/pypi/l/pypkgtemp.svg" alt="license" /></td> </tr> <tr> <td>Build Status</td> <td> <a href="https://gitlab.com/costrouc/python-package-template/pipelines"> <img src="https://gitlab.com/costrouc/python-package-template/badges/master/pipeline.svg" alt="gitlab pipeline status" /> </a> </td> </tr> <tr> <td>Coverage</td> <td><img src="https://gitlab.com/costrouc/python-package-template/badges/master/coverage.svg" alt="coverage" /></td> </tr> <tr> <td>Conda</td> <td> <a href="https://gitlab.com/costrouc/python-package-template"> <img src="https://anaconda.org/costrouc/pypkgtemp/badges/downloads.svg" alt="conda-forge downloads" /> </a> </td> </tr> </table> This is an opinionated attempt to document how I deploy a python application with documentation, testing, pypi, and continuous Loading setup.py +1 −1 Original line number Diff line number Diff line Loading @@ -13,7 +13,7 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f: setup( name='pypkgtemp', version='1.0.9', version='1.0.10', description='A python package template', long_description=long_description, long_description_content_type="text/markdown", Loading Loading
.gitlab-ci.yml +1 −1 Original line number Diff line number Diff line variables: TWINE_USERNAME: SECURE TWINE_PASSWORD: SECURE TWINE_REPOSITORY_URL: https://pypi.org/legacy/ TWINE_REPOSITORY_URL: https://upload.pypi.org/legacy ANACONDA_USERNAME: SECURE ANACONDA_TOKEN: SECURE Loading
README.md +37 −8 Original line number Diff line number Diff line # Python Package Template +-----+-----+ | docs |  | +-----+-----+ | tests | asdf | +-----+-----+ | package |     | +-----+-----+ <table> <tr> <td>Latest Release</td> <td><img src="https://img.shields.io/pypi/v/pypkgtemp.svg" alt="latest release" /></td> </tr> <td></td> <td><img src="https://anaconda.org/costrouc/pypkgtemp/badges/version.svg" alt="latest release" /></td> </tr> <tr> <td>Package Status</td> <td><img src="https://img.shields.io/pypi/status/pypkgtemps.svg" alt="status" /></td> </tr> <tr> <td>License</td> <td><img src="https://img.shields.io/pypi/l/pypkgtemp.svg" alt="license" /></td> </tr> <tr> <td>Build Status</td> <td> <a href="https://gitlab.com/costrouc/python-package-template/pipelines"> <img src="https://gitlab.com/costrouc/python-package-template/badges/master/pipeline.svg" alt="gitlab pipeline status" /> </a> </td> </tr> <tr> <td>Coverage</td> <td><img src="https://gitlab.com/costrouc/python-package-template/badges/master/coverage.svg" alt="coverage" /></td> </tr> <tr> <td>Conda</td> <td> <a href="https://gitlab.com/costrouc/python-package-template"> <img src="https://anaconda.org/costrouc/pypkgtemp/badges/downloads.svg" alt="conda-forge downloads" /> </a> </td> </tr> </table> This is an opinionated attempt to document how I deploy a python application with documentation, testing, pypi, and continuous Loading
setup.py +1 −1 Original line number Diff line number Diff line Loading @@ -13,7 +13,7 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f: setup( name='pypkgtemp', version='1.0.9', version='1.0.10', description='A python package template', long_description=long_description, long_description_content_type="text/markdown", Loading