Skip to content

Commit

Permalink
Add badges (#79)
Browse files Browse the repository at this point in the history
* added badges

* Update README.md

* bumped version to 0.18.1

* version to 0.18.1

* updating travis file

* Updated gitignore to ignore build dir

* Added new password secure, made few updates

* Update docs/conf.py

* Update setup.py
  • Loading branch information
Kamil A. Kaczmarek authored Apr 11, 2020
1 parent 9aa46cf commit 262057b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
VERSION
neptune_contrib.egg-info/
dist/
build/

# tests
.cache/
Expand Down
18 changes: 9 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
sudo: false
os: linux
language: python
python:
- '3.5.6'
- '3.5'
- '3.6'
install:
- pip install -q -r test_requirements.txt
- pip install tox-travis pylintfileheader
- pip install -r test_requirements.txt
- pip install tox-travis pylintfileheader
script:
- python -m pylint -j 0 -f parseable neptunecontrib tests
- tox
deploy:
distributions: git_version sdist
provider: pypi
user: neptune-contrib
username: __token__
password:
secure: 47gkGApBZ8Ceq67
on:
tags: true
skip_existing: true
secure: OVmgLM5O/eOBknYyarV29MLUUvKzUTWTLaXJVei0uW7aMtQBsz0yJq54IbtZnOf2Pcnzjxfn/3lqcmlMRUBwkm0HVxrFRMko1EgfllK293oHdQKsNdHw20grCIBGmu6jF0DqGZ+Tv/QnQU9MTWt9I2y2s6780DVhVSilhBGXWYgF6/FRerdYXpGrNXf6vtIwsaOSBVkFHeojsvlpwO6fO9S8z7O1vv9xunh4R54cBr+QmRGDiVhLllGsGvcfDvWIJx23CjI2/0HcN8Qfh3H7A84ghKMchykJVpxmHThB1kmHYza3BSOPpOaFFfAxAu28vfbH9ZTreEt0CZWq4RgfzaclEe9tp6gGE1q36oHt+CUEt5zX0IPdM+ENCiApLD4qw+W+rYA5TA9dOzmtamlha+DOaUocj+QLULGAqNH12GDRfHwv9jYJhMSCCHu31JcHPBwl6nav/TOjSeIsXn8oXF4BW1eFIv00lxj/4b2doC7nfbQWK2zIw6AL5OSjGyPot/RvV818kaySceEMAzRd3BiRcPGMCciVYG5oj5eGs5RSVydOGh2xLRLJJEmi7k/JWUN4l/UjD590w1mfzAZ14X3fLRLnwaRh+tLuo6YHndAk2g/yOS9UL9pZNivb9asKEiezvUETGATX2zYUYjnjXM4DsjN9MUfwcQUJnmtO6Is=
on:
tags: true
skip_existing: true
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# neptune-contrib
[![PyPI version](https://badge.fury.io/py/neptune-contrib.svg)](https://badge.fury.io/py/neptune-contrib)
[![Build Status](https://travis-ci.org/neptune-ai/neptune-contrib.svg?branch=master)](https://travis-ci.org/neptune-ai/neptune-contrib)
[![Documentation Status](https://readthedocs.org/projects/neptune-contrib/badge/?version=latest)](https://neptune-contrib.readthedocs.io/?badge=latest)

[![Downloads](https://pepy.tech/badge/neptune-contrib)](https://pepy.tech/project/neptune-contrib)
[![Downloads](https://pepy.tech/badge/neptune-contrib/month)](https://pepy.tech/project/neptune-contrib/month)
[![Downloads](https://pepy.tech/badge/neptune-contrib/week)](https://pepy.tech/project/neptune-contrib/week)

# Documentation
See [neptune-contrib documentation site](https://neptune-contrib.readthedocs.io)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# The short X.Y version
version = '0.18'
# The full version, including alpha/beta/rc tags
release = '0.18.0'
release = '0.18.2'

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def main():

setup(
name='neptune-contrib',
version='0.18.0',
version='0.18.2',
description='Neptune.ai contributions library',
author='neptune.ai',
support='[email protected]',
Expand Down

0 comments on commit 262057b

Please sign in to comment.