Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 16 additions & 14 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
taxonomy-matcher
=================

CI Status
-----------

.. image:: https://travis-ci.org/tilaboy/taxonomy-matcher.svg?branch=master
:target: https://travis-ci.org/tilaboy/taxonomy-matcher

.. image:: https://pyup.io/repos/github/tilaboy/taxonomy-matcher/shield.svg
:target: https://pyup.io/repos/github/tilaboy/taxonomy-matcher/
:alt: Updates

.. image:: https://readthedocs.org/projects/gazetteer-matcher/badge/?version=latest
:target: https://gazetteer-matcher.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status


Description
-----------

Expand All @@ -19,26 +34,13 @@ For each match, it will return the information of,
- and other code related information


CI Status
-----------

.. image:: https://travis-ci.org/tilaboy/taxonomy-matcher.svg?branch=master
:target: https://travis-ci.org/tilaboy/taxonomy-matcher

.. image:: https://pyup.io/repos/github/tilaboy/taxonomy-matcher/shield.svg
:target: https://pyup.io/repos/github/tilaboy/taxonomy-matcher/
:alt: Updates

.. image:: https://readthedocs.org/projects/gazetteer-matcher/badge/?version=latest
:target: https://gazetteer-matcher.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status


Requirements
------------

Python 3.6+


Usage
-----

Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pip==19.1.1
pip==19.3.1
bumpversion==0.5.3
wheel==0.33.4
watchdog==0.9.0
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.7
current_version = 0.0.8
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages

NAME = "taxonomy_matcher"
VERSION = os.environ.get("TAXONOMY_MATCHER_VERSION", '0.0.7')
VERSION = os.environ.get("TAXONOMY_MATCHER_VERSION", '0.0.8')

with open('README.rst', "r") as readme_file:
readme = readme_file.read()
Expand Down
2 changes: 1 addition & 1 deletion taxonomy_matcher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

__author__ = """Chao Li"""
__email__ = '[email protected]'
__version__ = '0.0.7'
__version__ = '0.0.8'
name = "taxonomy_matcher"


Expand Down