-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (67 loc) · 2.04 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.1.6"
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.8,<3.11"
gitpython = "^3.0"
requests = "^2.22.0"
tqdm = "^4.41.1"
gensim = "^4.1.2"
boltons = "^21.0.0"
greek-accentuation = "^1.2.0"
python-Levenshtein = "^0.12.0"
stanza = "^1.3.0"
nltk = "^3.7"
stringcase = "^1.2"
spacy = "^3.2.4"
PyYAML = "^6.0.0"
scikit-learn = "^1.0.2"
scipy = "^1.8.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
nose = "^1.3"
ipython = "^8.2"
pylint = "^2.13.5"
sphinx = "^4.5.0"
coverage = "^6.3.2"
pylint-json2html = "^0.4.0"
tox = "^3.24.5"
tox-pyenv = "^1.1"
pytest-cov = "^3.0"
rtd-poetry = "^0.1.0"
sphinx-autodoc-typehints = "^1.17"
pre-commit = "2.18.1"
mypy = "^0.942"
lxml = "^4.9"
black = "^22.3.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry>=1.1.13"]
build-backend = "poetry.masonry.api"