From 190c612ff1006c4d255831843ade6479f68dd9a2 Mon Sep 17 00:00:00 2001 From: tilaboy Date: Tue, 6 Aug 2019 16:20:19 +0200 Subject: [PATCH 1/6] Update README.rst --- README.rst | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/README.rst b/README.rst index 5a8663a..f4c9ab2 100644 --- a/README.rst +++ b/README.rst @@ -19,21 +19,6 @@ 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 ------------ From d25c94049af380d469f9f6e7b1c655bc22ec433f Mon Sep 17 00:00:00 2001 From: tilaboy Date: Tue, 6 Aug 2019 16:23:01 +0200 Subject: [PATCH 2/6] Update README.rst --- README.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.rst b/README.rst index f4c9ab2..3ffa873 100644 --- a/README.rst +++ b/README.rst @@ -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 ----------- @@ -19,11 +34,13 @@ For each match, it will return the information of, - and other code related information + Requirements ------------ Python 3.6+ + Usage ----- From 51cc98550c91b410ee42c393a45ca6e42c7a32e0 Mon Sep 17 00:00:00 2001 From: chao Date: Mon, 5 Aug 2019 10:43:31 +0200 Subject: [PATCH 3/6] =?UTF-8?q?Bump=20version:=200.0.7=20=E2=86=92=200.0.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 2 +- setup.py | 2 +- taxonomy_matcher/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index a2dacf9..5c1feba 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.7 +current_version = 0.0.8 commit = True tag = True diff --git a/setup.py b/setup.py index 57e393a..56350ec 100644 --- a/setup.py +++ b/setup.py @@ -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() diff --git a/taxonomy_matcher/__init__.py b/taxonomy_matcher/__init__.py index dee06e5..19fdc80 100644 --- a/taxonomy_matcher/__init__.py +++ b/taxonomy_matcher/__init__.py @@ -7,7 +7,7 @@ __author__ = """Chao Li""" __email__ = 'chaoli.job@google.com' -__version__ = '0.0.7' +__version__ = '0.0.8' name = "taxonomy_matcher" From fc82503b93493d3464d7caada50f077181471942 Mon Sep 17 00:00:00 2001 From: chao Date: Thu, 24 Oct 2019 03:11:01 +0200 Subject: [PATCH 4/6] added docs/modules.rst --- docs/modules.rst | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 docs/modules.rst diff --git a/docs/modules.rst b/docs/modules.rst new file mode 100644 index 0000000..d2c2f16 --- /dev/null +++ b/docs/modules.rst @@ -0,0 +1,7 @@ +taxonomy_matcher +================ + +.. toctree:: + :maxdepth: 4 + + taxonomy_matcher From b348f382c49afe50773dcf11eb9bb2586f259a32 Mon Sep 17 00:00:00 2001 From: chao Date: Thu, 24 Oct 2019 03:18:18 +0200 Subject: [PATCH 5/6] added docs for modules --- docs/taxonomy_matcher.match_patterns.rst | 46 ++++++++++++++ docs/taxonomy_matcher.rst | 77 ++++++++++++++++++++++++ 2 files changed, 123 insertions(+) create mode 100644 docs/taxonomy_matcher.match_patterns.rst create mode 100644 docs/taxonomy_matcher.rst diff --git a/docs/taxonomy_matcher.match_patterns.rst b/docs/taxonomy_matcher.match_patterns.rst new file mode 100644 index 0000000..83c0199 --- /dev/null +++ b/docs/taxonomy_matcher.match_patterns.rst @@ -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: diff --git a/docs/taxonomy_matcher.rst b/docs/taxonomy_matcher.rst new file mode 100644 index 0000000..0852ad5 --- /dev/null +++ b/docs/taxonomy_matcher.rst @@ -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: From c659a3deb6df07d175277986f314422b3796632e Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sun, 27 Oct 2019 02:35:02 +0100 Subject: [PATCH 6/6] Update sphinx from 2.1.2 to 2.2.1 --- requirements_dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements_dev.txt b/requirements_dev.txt index c95b643..1e4a215 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -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