-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
59 lines (52 loc) · 1.44 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
[tool.poetry]
name = "spaczz"
version = "0.5.0"
description = "Adds fuzzy matching and additional regex matching support to spaCy."
license = "MIT"
readme = "README.md"
homepage = "https://github.com/gandersen101/spaczz"
repository = "https://github.com/gandersen101/spaczz"
keywords = ["fuzzy matching", "spacy", "nlp"]
authors = ["Grant Andersen <[email protected]>"]
documentation = "https://spaczz.readthedocs.io"
[tool.poetry.dependencies]
python = "^3.7"
spacy = ">= 2.2.0, < 4.0.0"
regex = "^2020.6.8"
importlib_metadata = {version = "^1.7.0", python = "<3.8"}
rapidfuzz = "^1"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.3"
black = "^19.10b0"
pytest = "^5.4.3"
coverage = {version = "^5.1", extras = ["toml"]}
pytest-cov = "^2.10.0"
pytest-mock = "^3.1.1"
flake8-black = "0.*"
flake8-bugbear = "^20.1.4"
flake8-bandit = "^2.1.2"
safety = "^1.9.0"
flake8-import-order = "^0.18"
mypy = "0.*"
typeguard = "^2.9.1"
flake8-annotations = "^2.1.0"
flake8-docstrings = "^1.5.0"
darglint = "^1.4.1"
xdoctest = "0.*"
sphinx = "^3.1.1"
rstcheck = "^3.3.1"
sphinx-autodoc-typehints = "^1.11.0"
sphinx-autobuild = "0.*"
codecov = "^2.1.7"
[tool.poetry.plugins."spacy_factories"]
"spaczz_ruler" = "spaczz.pipeline:SpaczzRuler"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["spaczz"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"