-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
39 lines (34 loc) · 988 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
[tool.poetry]
name = "tiny-web-crawler"
version = "0.5.0"
description = "A simple and efficient web crawler in Python."
authors = ["Indrajith Indraprastham <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "http://github.com/indrajithi/tiny-web-crawler"
repository = "http://github.com/indrajithi/tiny-web-crawler"
documentation = "http://github.com/indrajithi/tiny-web-crawler"
packages = [
{ include = "tiny_web_crawler", from = "src" }
]
[tool.poetry.scripts]
post_install = "scripts:post_install"
[tool.poetry.dependencies]
python = "^3.8"
validators = "^0.28.3"
beautifulsoup4 = "^4.12.3"
lxml = "^5.2.2"
colorama = "^0.4.6"
requests = "^2.32.3"
pylint = "3.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^6.2"
responses = "^0.13.4"
pylint = "^3.0.2"
mypy = "^1.10.0"
pytest-cov = "^5.0.0"
requests-mock = "^1.12.1"
pre-commit = ">=2.15,<3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"