Skip to content

Commit

Permalink
initial 2.1.0 release commit
Browse files Browse the repository at this point in the history
  • Loading branch information
reddalexx committed Sep 15, 2021
1 parent 8445d21 commit a96732f
Show file tree
Hide file tree
Showing 337 changed files with 1,319 additions and 896 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -46,6 +46,7 @@ by contacting ContraxSuite Licensing at <<license@contraxsuite.com>>.
* see python-requirements.txt file for full information

## Releases
* 2.0.1: September 16, 2021 - Twenty third scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/2.1.0)
* 2.0.0: May 10, 2021 - Twenty second scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/2.0.0)
* 1.8.0: December 2, 2020 - Twenty first scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/1.8.0)
* 1.7.0: August 27, 2020 - Twentieth scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/1.7.0)
Expand Down
2 changes: 2 additions & 0 deletions README.rst
Expand Up @@ -81,6 +81,8 @@ Requirements
Releases
--------

- 2.1.0: September 16, 2021 - Twenty third scheduled public release;
`code <https://github.com/LexPredict/lexpredict-lexnlp/tree/2.1.0>`__
- 2.0.0: May 10, 2021 - Twenty second scheduled public release;
`code <https://github.com/LexPredict/lexpredict-lexnlp/tree/2.0.0>`__
- 1.8.0: December 2, 2020 - Twenty first scheduled public release;
Expand Down
7 changes: 6 additions & 1 deletion documentation/docs/source/changes.rst
Expand Up @@ -4,6 +4,11 @@
Changelog
============

2.1.0 - September 16, 2021
----------------
* Improved LexNLP handling for companies for the "EN" locale.
* Improved LexNLP handling for dates for all locales and dates parser accuracy for the "DE" locale.

2.0.0 - May 10, 2021
----------------
* Tune extracting facts from text for different locales.
Expand All @@ -14,7 +19,7 @@ Changelog
----------------
* Improved LexNLP handling for definitions for the "EN" locale.
* Implemented rating OCR quality in texts.
* Migrated numeric data in parsers sesults to decimal format to avoid losing fraction digits.
* Migrated numeric data in parsers results to decimal format to avoid losing fraction digits.

1.7.0 - August 27, 2020
----------------
Expand Down
4 changes: 2 additions & 2 deletions documentation/docs/source/conf.py
Expand Up @@ -25,9 +25,9 @@
author = 'ContraxSuite, LLC'

# The short X.Y version
version = '2.0.0'
version = '2.1.0'
# The full version, including alpha/beta/rc tags
release = '2.0.0'
release = '2.1.0'

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

Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/source/license.rst
Expand Up @@ -7,7 +7,7 @@ License
AGPL License
----------------
LexNLP is available by default under the terms of the GNU Affero General Public License v3.0.
https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE
https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE


License Release
Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/source/modules/extract/en/courts.rst
Expand Up @@ -18,7 +18,7 @@ of court or venue references from text.
* US Federal and State courts

This data is governed by a separate Creative Commons Attribution Share Alike 4.0 license here:
https://github.com/LexPredict/lexpredict-legal-dictionary/blob/2.0.0/LICENSE
https://github.com/LexPredict/lexpredict-legal-dictionary/blob/2.1.0/LICENSE


The full list of current unit test cases can be found here:
Expand Down
Expand Up @@ -12,7 +12,7 @@ of geopolitical or geographic references from text.
https://github.com/LexPredict/lexpredict-legal-dictionary

This data is governed by a separate Creative Commons Attribution Share Alike 4.0 license here:
https://github.com/LexPredict/lexpredict-legal-dictionary/blob/2.0.0/LICENSE
https://github.com/LexPredict/lexpredict-legal-dictionary/blob/2.1.0/LICENSE


The full list of current unit test cases can be found here:
Expand Down
2 changes: 2 additions & 0 deletions index.rst
Expand Up @@ -81,6 +81,8 @@ Requirements
Releases
--------

- 2.1.0: September 16, 2021 - Twenty third scheduled public release;
`code <https://github.com/LexPredict/lexpredict-lexnlp/tree/2.1.0>`__
- 2.0.0: May 10, 2021 - Twenty second scheduled public release;
`code <https://github.com/LexPredict/lexpredict-lexnlp/tree/2.0.0>`__
- 1.8.0: December 2, 2020 - Twenty first scheduled public release;
Expand Down
4 changes: 2 additions & 2 deletions lexnlp/__init__.py
@@ -1,7 +1,7 @@
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/config/__init__.py
@@ -1,6 +1,6 @@
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"
4 changes: 2 additions & 2 deletions lexnlp/config/en/__init__.py
@@ -1,6 +1,6 @@
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"
4 changes: 2 additions & 2 deletions lexnlp/config/en/company_types.py
Expand Up @@ -10,8 +10,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/config/en/geoentities_config.py
Expand Up @@ -4,8 +4,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/config/stanford.py
Expand Up @@ -4,8 +4,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/__init__.py
@@ -1,6 +1,6 @@
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/__init__.py
@@ -1,6 +1,6 @@
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"# -*- coding: utf-8 -*-
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/amounts.py
Expand Up @@ -2,8 +2,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/citations.py
Expand Up @@ -2,8 +2,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/copyrights.py
Expand Up @@ -2,8 +2,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/court_citations.py
Expand Up @@ -2,8 +2,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/courts.py
Expand Up @@ -2,8 +2,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/dates.py
Expand Up @@ -2,8 +2,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/definitions.py
Expand Up @@ -2,8 +2,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/durations.py
Expand Up @@ -2,8 +2,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
8 changes: 4 additions & 4 deletions lexnlp/extract/all_locales/geoentities.py
Expand Up @@ -2,8 +2,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand All @@ -18,8 +18,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2020, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/languages.py
Expand Up @@ -2,8 +2,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/money.py
Expand Up @@ -2,8 +2,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/percents.py
Expand Up @@ -2,8 +2,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/tests/__init__.py
@@ -1,6 +1,6 @@
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"
4 changes: 2 additions & 2 deletions lexnlp/extract/all_locales/tests/test_locales.py
Expand Up @@ -7,8 +7,8 @@

__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/common/__init__.py
@@ -1,6 +1,6 @@
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"
4 changes: 2 additions & 2 deletions lexnlp/extract/common/annotation_locator_type.py
@@ -1,7 +1,7 @@
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/common/annotation_type.py
@@ -1,7 +1,7 @@
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/common/annotations/__init__.py
@@ -1,6 +1,6 @@
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"
4 changes: 2 additions & 2 deletions lexnlp/extract/common/annotations/act_annotation.py
@@ -1,7 +1,7 @@
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/common/annotations/amount_annotation.py
@@ -1,7 +1,7 @@
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down
4 changes: 2 additions & 2 deletions lexnlp/extract/common/annotations/citation_annotation.py
@@ -1,7 +1,7 @@
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
__version__ = "2.0.0"
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
__version__ = "2.1.0"
__maintainer__ = "LexPredict, LLC"
__email__ = "support@contraxsuite.com"

Expand Down

0 comments on commit a96732f

Please sign in to comment.