-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from bretttolbert/catalan-contd
improved Catalan support
- Loading branch information
Showing
38 changed files
with
5,465 additions
and
2,876 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,55 +4,61 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "verbecc" | ||
version = "1.9.2" | ||
version = "1.9.3" | ||
dependencies = [ | ||
"lxml", | ||
"lxml-stubs", | ||
"cython", | ||
"numpy", | ||
"scipy", | ||
"scikit-learn" | ||
"scikit-learn", | ||
] | ||
requires-python = ">=3.8" | ||
authors = [ | ||
{name = "Brett Tolbert", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "Brett Tolbert", email = "[email protected]"} | ||
] | ||
authors = [{ name = "Brett Tolbert", email = "[email protected]" }] | ||
maintainers = [{ name = "Brett Tolbert", email = "[email protected]" }] | ||
description = "Verbs Completely Conjugated: machine learning conjugator for Catalan, French, Italian, Portuguese, Romanian and Spanish" | ||
readme = "README.md" | ||
license = {file = "LICENSE.txt"} | ||
keywords= ['verb,', 'conjugator', 'conjugation', 'Catalan', 'French', 'Italian', 'Portuguese', 'Romanian', 'Spanish'] | ||
license = { file = "LICENSE.txt" } | ||
keywords = [ | ||
'verb,', | ||
'conjugator', | ||
'conjugation', | ||
'Catalan', | ||
'French', | ||
'Italian', | ||
'Portuguese', | ||
'Romanian', | ||
'Spanish', | ||
] | ||
classifiers = [ | ||
'Development Status :: 5 - Production/Stable', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Topic :: Text Processing :: Linguistic', | ||
'Topic :: Education', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
'Topic :: Utilities', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: End Users/Desktop', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: GNU General Public License (GPL)', | ||
'Natural Language :: Catalan', | ||
'Natural Language :: French', | ||
'Natural Language :: Italian', | ||
'Natural Language :: Portuguese', | ||
'Natural Language :: Romanian', | ||
'Natural Language :: Spanish', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11' | ||
'Development Status :: 5 - Production/Stable', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Topic :: Text Processing :: Linguistic', | ||
'Topic :: Education', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
'Topic :: Utilities', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: End Users/Desktop', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: GNU General Public License (GPL)', | ||
'Natural Language :: Catalan', | ||
'Natural Language :: French', | ||
'Natural Language :: Italian', | ||
'Natural Language :: Portuguese', | ||
'Natural Language :: Romanian', | ||
'Natural Language :: Spanish', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
] | ||
|
||
[project.urls] | ||
|
@@ -67,3 +73,6 @@ trained_models = ['verbecc/data/models/*'] | |
|
||
[tool.setuptools.packages] | ||
find = {} | ||
|
||
[project.scripts] | ||
verbecc-train-models = 'verbecc.utils:train_models' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from unittest.mock import patch | ||
|
||
import pytest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.