forked from TeamHG-Memex/sklearn-crfsuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 1.01 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ace-sklearn-crfsuite"
version = "0.4.0"
description = "Fork of sklearn-crfsuite to provides interface simlar to modern scikit-learn"
readme = "README.rst"
authors = [{ name = "Sébastien Mosser", email = "[email protected]" }]
license = { text="MIT" }
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
]
keywords = ["sklearn", "crf", "crfsuite", "crf++"]
dependencies = [
"tqdm >= 4.64.0",
"scikit-learn >= 1.1.1",
"tabulate >= 0.8.9",
"python-crfsuite >= 0.9.6"
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/ace-design/ace-sklearn-crfsuite"
[project.optional-dependencies]
dev = [
"pytest >= 7.1.2",
"coverage >=6.4.1",
]