-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (35 loc) · 915 Bytes
/
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 = "similarius"
version = "0.0.1"
description = "Compare web page and evaluate the level of similarity."
authors = [
"David Cruciani <[email protected]>"
]
maintainers = [
"Alexandre Dulaunoy <[email protected]>",
"Aurelien Thirion (terrtia) <[email protected]>"
]
license = "BSD-2-Clause"
repository = "https://github.com/ail-project/Similarius"
readme = "README.md"
keywords = [
"web similarity",
"web comparaison"
]
[tool.poetry.scripts]
similarius = 'similarius:main'
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.28.2"
scikit-learn = "^1.2.0"
beautifulsoup4 = "^4.11.1"
nltk = "^3.8.1"
lxml = ">=4.9.2,<6.0.0"
[tool.poetry.group.dev.dependencies]
mypy = ">=0.991,<1.15"
types-requests = "^2.28.11.7"
types-urllib3 = "^1.26.25.4"
types-beautifulsoup4 = "^4.11.6.2"
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"