forked from cltk/cltk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (67 loc) · 2.03 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
63
64
65
66
67
68
69
70
[tool.poetry]
name = "cltk"
version = "1.0.24"
description = "The Classical Language Toolkit"
license = "MIT"
authors = ["Kyle P. Johnson <[email protected]>", "Patrick J. Burns <[email protected]>", "John Stewart <[email protected]>", "Todd Cook <[email protected]>", "Clément Besnier <https://github.com/clemsciences>", "William J. B. Mattingly <https://github.com/wjbmattingly>"]
readme = "README.rst"
homepage = "http://cltk.org"
repository = "https://github.com/cltk/cltk"
documentation = "https://cltk.readthedocs.io/en/latest/"
keywords = ["nlp", "ai", "nltk", "latin", "greek"]
classifiers = [
"Intended Audience :: Education",
"Intended Audience :: Religion",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: Chinese (Traditional)",
"Natural Language :: English",
"Natural Language :: French",
"Natural Language :: German",
"Natural Language :: Greek",
"Natural Language :: Latin",
"Natural Language :: Russian",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Linguistic",
]
[tool.poetry.dependencies]
python = "^3.7"
gitpython = "^3.0"
requests = "^2.22.0"
tqdm = "^4.41.1"
fasttext = "^0.9.1"
gensim = "^3.8.1"
boltons = "^20.0.0"
greek-accentuation = "^1.2.0"
python-Levenshtein = "^0.12.0"
stanza = "^1.3.0"
nltk = "^3.5"
stringcase = "^1.2"
spacy = "^2.3.5"
PyYAML = "^5.4.1"
scikit-learn = "^0.24.2"
[tool.poetry.dev-dependencies]
pytest = "^6.1.1"
nose = "^1.3"
ipython = "^7.31"
pylint = "^2.3"
sphinx = "^4.0.2"
coverage = "^4.5"
pylint-json2html = "^0.1.0"
tox = "^3.20"
tox-pyenv = "^1.1"
pytest-cov = "^2.7"
rtd-poetry = "^0.1.0"
sphinx-autodoc-typehints = "^1.12"
pre-commit = "2.7.1"
mypy = "^0.901"
lxml = "^4.6"
black = "^22.1.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"