-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (40 loc) · 1.07 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
[project]
name = "findlike"
version = "1.4.2"
authors = [{ name = "Bruno Arine", email = "[email protected]" }]
description = "findlike is a package to retrieve similar documents"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"nltk ~= 3.8",
"numpy ~= 1.21.6",
"scikit-learn ~= 1.0.2",
"rank-bm25 ~= 0.2.2",
"stop-words ~= 2018.7.23"
]
[project.urls]
"Homepage" = "http://www.github.com/brunoarine/findlike"
"Repository" = "https://github.com/brunoarine/findlike.git"
"Bug Tracker" = "http://www.github.com/brunoarine/findlike/issues"
[project.scripts]
findlike = "findlike.cli:cli"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 79
[project.optional-dependencies]
dev = [
"build ~= 0.10.0",
"black ~= 23.3.0",
"twine ~= 4.0.2",
"pylint ~= 2.17.4",
"mypy ~= 1.4.0",
"flake8 ~= 5.0.4",
"pytest ~= 7.4.0",
]