Skip to content

Commit

Permalink
add automatic integration to pypi with travis and update links on REA…
Browse files Browse the repository at this point in the history
…DME.
  • Loading branch information
khillion committed Apr 26, 2017
1 parent 861b43f commit 9951748
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
16 changes: 10 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
language: python
python:
- "3.6"

- '3.6'
install:
- pip install --no-cache-dir --process-dependency-links .
- pip install codecov coverage requests_mock nose_parameterized

- pip install --no-cache-dir --process-dependency-links .
- pip install codecov coverage requests_mock nose_parameterized
script: nosetests --with-coverage --cover-package=tooldog

after_success: codecov
deploy:
provider: pypi
user: khillion
password:
secure: wXjAUwTd1KljIsnMo3sqOhX3pFuaHE6EbN0mN69cr6iK33XantV1Sgq0onylak6NYpOCih4ivpos5lzM/onhHpH/T4MIoACwUzXWaQctKmkozS4JU6m3d729mxHBbxpzp2H50V56cO7Bm+ydsbx9lgzcygiAo7rG316SezbEEOTw4FZHDOJ0P5MPhTLj2NMNS77iBSViuLxwjxBH32eXIz874fJ9HUpf1uoPW8XDsAGcn9GsZ6D7nSRS3IUD9S10Gu5t9+38+69Ee5WwbUx4Zz05Xv2mzDvAquY4zUXbSuDGxpFFMeiO2Z1NA4l+52ZXFgGWTboB+emxJF+6FYQ/yMoJ6qv6tVA5xA5rWDx260Eyyhg/hjGjkBryZ92/D7EHdUlSkiXZb3odvtkb4C5dB/wV+SU4vBorZuLn1AVx9errPuNym407lf0pdnl8KSXzkvhzG1DFX6qWemC255gwCylxmZdE/MT1E2NdWpwlIFGxvQu5gfbBa8CVI0/NWG0RN0oKbrRSxHxk5B5k2Oxv58Dxr3kvA/9KcqyMwuurAXKWwVVGYevHCoxZDefakwH1CLOSlfJFTGyFbal/ZvsL4qhJmTsEDbm1pcGOAxgcFTyJ+hZB3rzhJb6siF5YQ4gtMh553/Ice4CsXYRodIqpIaS5Ri8zjV34ncdAJJHKjoI=
on:
tags: true
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ToolDog

[![Build Status](https://travis-ci.org/khillion/ToolDog.svg?branch=master)](https://travis-ci.org/khillion/ToolDog)
[![codecov](https://codecov.io/gh/khillion/ToolDog/branch/master/graph/badge.svg)](https://codecov.io/gh/khillion/ToolDog)
[![Build Status](https://travis-ci.org/bio-tools/ToolDog.svg?branch=master)](https://travis-ci.org/bio-tools/ToolDog)
[![codecov](https://codecov.io/gh/bio-tools/ToolDog/branch/master/graph/badge.svg)](https://codecov.io/gh/bio-tools/ToolDog)
[![Documentation Status](https://readthedocs.org/projects/tooldog/badge/?version=latest)](http://tooldog.readthedocs.io/en/latest/?badge=latest)
[![Python 3](https://img.shields.io/badge/python-3.6.0-blue.svg)](https://www.python.org/downloads/release/python-360/)
[![Gitter Chat](http://img.shields.io/badge/chat-online-brightgreen.svg)](https://gitter.im/ToolDog/Lobby)
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@
setup(name="tooldog",
version=tooldog.version,
description='Tool description generator (from https//bio.tools to XML and CWL)',
author='Kenzo-Hugo Hillion and Hervé Ménager',
author='Kenzo-Hugo Hillion and Herve Menager',
author_email='kehillio@pasteur.fr and hmenager@pasteur.fr',
license='MIT',
keywords = ['biotools','galaxy','xml','cwl'],
install_requires=['rdflib', 'requests', 'galaxyxml', 'cwlgen>=0.1'],
dependency_links = ['https://github.com/common-workflow-language/python-cwlgen/archive/master.zip#egg=cwlgen-0.1'],
install_requires=['rdflib', 'requests', 'galaxyxml', 'cwlgen'],
packages=["tooldog"],
package_data={
'tooldog': ['data/*.json', 'data/*.owl'],
Expand Down

0 comments on commit 9951748

Please sign in to comment.