Skip to content

Commit

Permalink
Merge pull request #7 from jbusecke/jbusecke_first_release
Browse files Browse the repository at this point in the history
First Pypi release
  • Loading branch information
Julius Busecke authored Feb 21, 2020
2 parents fd6ae30 + 9ba2f88 commit ee0325d
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pythonpublish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Upload Python Package

on:
release:
types: [created]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools setuptools-scm wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
15 changes: 15 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
===============================
cmip6_preprocessing
===============================

.. image:: https://badge.fury.io/py/cmip6_preprocessing.svg
:target: https://badge.fury.io/py/cmip6_preprocessing
.. image:: https://img.shields.io/travis/jbusecke/cmip6_preprocessing.svg
:target: https://travis-ci.org/jbusecke/cmip6_preprocessing
.. image:: https://circleci.com/gh/jbusecke/cmip6_preprocessing.svg?style=svg
:target: https://circleci.com/gh/jbusecke/cmip6_preprocessing
.. image:: https://codecov.io/gh/jbusecke/cmip6_preprocessing/branch/master/graph/badge.svg
:target: https://codecov.io/gh/jbusecke/cmip6_preprocessing


Some useful functions to make analysis across cmip6 modesl easier
11 changes: 11 additions & 0 deletions doc/whats-new.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.. currentmodule:: cmip6_preprocessing

What's New
===========

.. _whats-new.0.1.0:

v0.1.0 (2/21/2020)
----------------------

Initial release.

0 comments on commit ee0325d

Please sign in to comment.