This repository has been archived by the owner on Mar 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (38 loc) · 1.5 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
[tool.poetry]
name = "replacy-article-agreer"
version = "0.3.0"
description = "A replaCy component to manage indirect article agreement, that is, to deal with making \"a\" and \"an\" be correct so you don't have to think about them in your matches."
authors = ["Sam Havens <sam.havens@qordoba.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Qordobacode/replacy_article_agreer"
repository = "https://github.com/Qordobacode/replacy_article_agreer"
keywords = ["replacy", "spacy", "nlp", "languagetool"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Linguistic",
"Typing :: Typed"
]
include = ["LICENSE.md"]
[tool.poetry.dependencies]
python = "^3.8"
inflect = "^4.1.0"
importlib_metadata = { version = "^1.7.0", python = "<3.8" }
[tool.poetry.dev-dependencies]
en-core-web-sm = { url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.3.1/en_core_web_sm-2.3.1.tar.gz#egg=en_core_web_sm==2.3.1" }
pytest = "^5.2"
black = "^20.8b1"
mypy = "^0.782"
replacy = "^0.43.0"
spacy = "^2.3.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"