-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 780 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 780 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "webvac"
version = "0.3.0"
description = "Asyncio dynamic web scraper with auth and an optional De-Caffeinator VAPT task."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Adityaaa" }]
dependencies = [
"patchright",
"beautifulsoup4==4.12.3",
"lxml==5.2.2",
"tqdm==4.66.4",
"colorama==0.4.6",
"aiohttp",
"jsbeautifier",
"pyotp",
"cryptography",
"capsolver>=1.0.7",
]
[project.optional-dependencies]
dev = []
socks = ["aiohttp-socks"]
[project.scripts]
webvac = "webvac.cli.scraper:main"
webvac-menu = "webvac.cli.interactive:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["webvac*"]