forked from davidberenstein1957/crosslingual-coreference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (54 loc) · 1.77 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
[tool.poetry]
name = "crosslingual-coreference"
version = "0.3.1"
description = "A multi-lingual approach to AllenNLP CoReference Resolution, along with a wrapper for spaCy."
authors = ["David Berenstein <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/pandora-intelligence/crosslingual-coreference"
repository = "https://github.com/pandora-intelligence/crosslingual-coreference"
documentation = "https://github.com/pandora-intelligence/crosslingual-coreference"
keywords = ["AllenNLP", "spaCy", "NLP"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Software Development"
]
packages = [{include = "crosslingual_coreference"}]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
allennlp = "~2.9"
allennlp-models = "~2.9"
spacy = "~3.1"
scipy = "^1.7"
cached-path = "1.1.2"
protobuf = "^3.20"
[tool.poetry.plugins]
[tool.poetry.plugins."spacy_factories"]
"spacy" = "crosslingual_coreference.__init__:make_crosslingual_coreference"
[tool.poetry.dev-dependencies]
pytest = "~7.0"
flake8 = "~4.0"
black = "~22.3"
flake8-bugbear = "~22.3"
flake8-docstrings = "~1.6"
isort = "^5.10"
pre-commit = "~2.17"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = "tests"
[tool.black]
line-length = 119
experimental-string-processing = true
[tool.isort]
profile = "black"
src_paths = ["crosslingual_coreference"]