Verified Commit 65817ee8 authored by Christopher Ostrouchov's avatar Christopher Ostrouchov
Browse files

bump version and add some badges to site.

parent 24b0ad7d
Loading
Loading
Loading
Loading
Loading
+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

+37 −8
Original line number Diff line number Diff line
# Python Package Template

+-----+-----+
| docs | ![readthedocs](https://img.shields.io/readthedocs/costrouc-python-package-template.svg) |
+-----+-----+
| tests | asdf |
+-----+-----+
| package | ![version](https://img.shields.io/pypi/v/pypkgtemp.svg) ![license](https://img.shields.io/pypi/l/pypkgtemp.svg) ![PyPI - Wheel](https://img.shields.io/pypi/wheel/pypkgtemp.svg) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pypkgtemp.svg) |
+-----+-----+

<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
+1 −1
Original line number Diff line number Diff line
@@ -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",