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
7 changes: 7 additions & 0 deletions docs/modules.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
taxonomy_matcher
================

.. toctree::
:maxdepth: 4

taxonomy_matcher
46 changes: 46 additions & 0 deletions docs/taxonomy_matcher.match_patterns.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
taxonomy\_matcher.match\_patterns package
=========================================

Submodules
----------

taxonomy\_matcher.match\_patterns.patterns module
-------------------------------------------------

.. automodule:: taxonomy_matcher.match_patterns.patterns
:members:
:undoc-members:
:show-inheritance:

taxonomy\_matcher.match\_patterns.patterns\_ct module
-----------------------------------------------------

.. automodule:: taxonomy_matcher.match_patterns.patterns_ct
:members:
:undoc-members:
:show-inheritance:

taxonomy\_matcher.match\_patterns.patterns\_gz module
-----------------------------------------------------

.. automodule:: taxonomy_matcher.match_patterns.patterns_gz
:members:
:undoc-members:
:show-inheritance:

taxonomy\_matcher.match\_patterns.patterns\_nt module
-----------------------------------------------------

.. automodule:: taxonomy_matcher.match_patterns.patterns_nt
:members:
:undoc-members:
:show-inheritance:


Module contents
---------------

.. automodule:: taxonomy_matcher.match_patterns
:members:
:undoc-members:
:show-inheritance:
77 changes: 77 additions & 0 deletions docs/taxonomy_matcher.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
taxonomy\_matcher package
=========================

Subpackages
-----------

.. toctree::

taxonomy_matcher.match_patterns

Submodules
----------

taxonomy\_matcher.data\_saver module
------------------------------------

.. automodule:: taxonomy_matcher.data_saver
:members:
:undoc-members:
:show-inheritance:

taxonomy\_matcher.data\_utils module
------------------------------------

.. automodule:: taxonomy_matcher.data_utils
:members:
:undoc-members:
:show-inheritance:

taxonomy\_matcher.matched\_phrase module
----------------------------------------

.. automodule:: taxonomy_matcher.matched_phrase
:members:
:undoc-members:
:show-inheritance:

taxonomy\_matcher.matcher module
--------------------------------

.. automodule:: taxonomy_matcher.matcher
:members:
:undoc-members:
:show-inheritance:

taxonomy\_matcher.token\_position module
----------------------------------------

.. automodule:: taxonomy_matcher.token_position
:members:
:undoc-members:
:show-inheritance:

taxonomy\_matcher.token\_trie module
------------------------------------

.. automodule:: taxonomy_matcher.token_trie
:members:
:undoc-members:
:show-inheritance:

taxonomy\_matcher.tokenizer module
----------------------------------

.. automodule:: taxonomy_matcher.tokenizer
:members:
:undoc-members:
:show-inheritance:


Module contents
---------------

.. automodule:: taxonomy_matcher
:members:
:undoc-members:
:show-inheritance:
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ watchdog==0.9.0
flake8==3.7.8
tox==3.13.2
coverage==4.5.4
Sphinx==2.1.2
Sphinx==2.2.1
twine==1.13.0

pytest==5.0.1
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