-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
executable file
·80 lines (75 loc) · 2.45 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "verbecc"
version = "1.9.7"
dependencies = [
"importlib_resources",
"lxml",
"lxml-stubs",
"cython",
"numpy",
"scipy",
"scikit-learn",
]
requires-python = ">=3.8"
authors = [{ name = "Brett Tolbert", email = "bretttolbert@gmail.com" }]
maintainers = [{ name = "Brett Tolbert", email = "bretttolbert@gmail.com" }]
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',
]
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 Lesser General Public License v3 (LGPLv3)',
'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',
'Programming Language :: Python :: 3.12',
]
[project.urls]
Homepage = "https://github.com/bretttolbert/verbecc"
Documentation = "https://github.com/bretttolbert/verbecc"
Repository = "https://github.com/bretttolbert/verbecc.git"
"Bug Tracker" = "https://github.com/bretttolbert/verbecc/issues"
Changelog = "https://github.com/bretttolbert/verbecc/blob/master/CHANGELOG.md"
[tool.setuptools.package-data]
trained_models = ['verbecc/data/models/*']
[tool.setuptools.packages]
find = {}
[project.scripts]
train-verb-models = 'verbecc.utils:train_models'