-
Notifications
You must be signed in to change notification settings - Fork 34
/
pyproject.toml
61 lines (59 loc) · 1.51 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
[tool.black]
line-length = 79
skip-string-normalization = true
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| _build
| build
| dist
)/
'''
[tool.poetry]
name = "abydos"
version = "0.6.0"
description = "Abydos NLP/IR library"
license = "GPL-3.0+"
authors = [
"Christopher C. Little <[email protected]>"
]
readme = "README.rst"
homepage = "https://github.com/chrislit/abydos"
repository = "https://github.com/chrislit/abydos"
documentation = "https://abydos.readthedocs.io/"
keywords = [
"nlp",
"ir",
"linguistics",
"phonetic algorithms",
"string distance",
]
include = [
"AUTHORS.rst",
"CODE_OF_CONDUCT.rst",
"CODING_STANDARDS.rst",
"HISTORY.rst",
"abydos.png"
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Indexing",
"Topic :: Text Processing :: Linguistic",
"Natural Language :: English",
]
[tool.poetry.dependencies]
python = "^3.5"
numpy = ">=1.7"