-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (39 loc) · 1.14 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "proxy-spider"
version = "0.0.0"
license = { text = "MIT" }
authors = [{ name = "threatcode", email = "coderxcard@gmail.com" }]
requires-python = ">=3.9,<4"
classifiers = ["Private :: Do Not Upload"]
dependencies = [
"aiofiles",
"aiohttp>=3.8.6,<4",
"aiohttp-socks>=0.7,<0.11",
"attrs>=22.2",
"brotli>=1,<2; implementation_name=='cpython'",
"brotlicffi<2; implementation_name!='cpython'",
"certifi",
"charset-normalizer>=2,<4",
"maxminddb>=1.3,<3",
"platformdirs<5",
"rich>=12.3,<14",
"tomli<3; python_version<'3.11'",
"winloop<0.1.8; implementation_name=='cpython' and (sys_platform=='cygwin' or sys_platform=='win32')",
]
optional-dependencies.non-termux = [
"aiodns>=1.1,<4",
"uvloop>=0.14,<0.22; implementation_name=='cpython' and (sys_platform=='darwin' or sys_platform=='linux')",
]
urls.repository = "https://github.com/threatcode/proxy-spider"
[dependency-groups]
dev = [
"mypy[faster-cache]==1.13",
"ruff==0.7.2",
"tomli==2.0.2",
"types-aiofiles==24.1.0.20240626",
"typing-extensions==4.12.2",
]
nuitka = ["nuitka==2.4.11"]