-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.02 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
[tool.poetry]
name = "spacy-crfsuite"
version = "1.3.0"
description = "spaCy pipeline component for CRF entity extraction"
authors = ["Tal Almagor"]
license = "MIT"
readme = "README.md"
packages = [{ include = "spacy_crfsuite" }]
[tool.black]
line-length = 91
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
spacy = "^3.4.4"
sklearn-crfsuite = "^0.3.6"
joblib = "^1.2.0"
scikit-learn = "^1.2.0"
pytest = "^7.2.2"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.1"
ipython = "^8.8.0"
srsly = "^2.4.5"
plac = "^1.3.5"
jupyter = "^1.0.0"
pytest = "^7.2.1"
scipy = "^1.10.0"
black = "^22.12.0"
tqdm = "^4.64.1"
fastapi = "^0.89.1"
uvicorn = "^0.20.0"
gradio = "^3.16.2"
twine = "^4.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"