-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 1.02 KB
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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tor-army"
version = "3.2.0"
description = "Massively parallel async web scraper using Tor for IP diversity and browser TLS fingerprint impersonation"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [{ name = "VoxCore84" }]
keywords = ["scraper", "tor", "async", "wowhead", "web-scraping", "cloudflare-bypass"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"curl-cffi>=0.7",
"stem>=1.8",
]
[project.optional-dependencies]
dev = ["pytest>=7.0"]
[tool.setuptools]
py-modules = ["tor_army", "parsers", "generate_id_lists"]
[project.scripts]
tor-army = "tor_army:main"
[project.urls]
Homepage = "https://github.com/VoxCore84/tor-army"
Issues = "https://github.com/VoxCore84/tor-army/issues"