2024-02-07 09:01:55 +03:00
|
|
|
[build-system]
|
2024-10-01 15:53:42 +03:00
|
|
|
build-backend = "hatchling.build"
|
2024-10-03 15:29:20 +03:00
|
|
|
requires = ["hatchling"]
|
2024-02-07 09:01:55 +03:00
|
|
|
|
2024-10-01 15:53:42 +03:00
|
|
|
[project]
|
2024-01-21 17:45:01 +00:00
|
|
|
name = "proxy-scraper-checker"
|
2024-10-01 15:53:42 +03:00
|
|
|
version = "0.0.0"
|
|
|
|
|
license = { text = "MIT" }
|
|
|
|
|
authors = [{ name = "monosans", email = "hsyqixco@protonmail.com" }]
|
2024-10-17 14:18:27 +03:00
|
|
|
requires-python = ">=3.9,<4"
|
2024-01-21 17:45:01 +00:00
|
|
|
classifiers = ["Private :: Do Not Upload"]
|
2024-10-01 15:53:42 +03:00
|
|
|
dependencies = [
|
2024-11-26 21:39:42 +03:00
|
|
|
"aiodns>=1.1,<4",
|
2024-10-01 15:53:42 +03:00
|
|
|
"aiofiles",
|
|
|
|
|
"aiohttp>=3.8.6,<4",
|
|
|
|
|
"aiohttp-socks>=0.7,<0.10",
|
|
|
|
|
"attrs>=22.2",
|
2024-10-03 15:29:20 +03:00
|
|
|
"brotli>=1,<2; implementation_name=='cpython'",
|
|
|
|
|
"brotlicffi<2; implementation_name!='cpython'",
|
2024-10-01 15:53:42 +03:00
|
|
|
"certifi",
|
|
|
|
|
"charset-normalizer>=2,<4",
|
|
|
|
|
"maxminddb>=1.3,<3",
|
|
|
|
|
"platformdirs<5",
|
|
|
|
|
"rich>=12.3,<14",
|
2024-10-03 15:29:20 +03:00
|
|
|
"tomli<3; python_version<'3.11'",
|
2024-10-17 14:18:27 +03:00
|
|
|
"uvloop>=0.14,<0.22; implementation_name=='cpython' and (sys_platform=='darwin' or sys_platform=='linux')",
|
2024-11-29 21:33:21 +00:00
|
|
|
"winloop<0.1.8; implementation_name=='cpython' and (sys_platform=='cygwin' or sys_platform=='win32')",
|
2024-10-01 15:53:42 +03:00
|
|
|
]
|
2024-10-03 15:29:20 +03:00
|
|
|
urls.repository = "https://github.com/monosans/proxy-scraper-checker"
|
2024-01-21 17:45:01 +00:00
|
|
|
|
2024-10-26 11:27:00 +03:00
|
|
|
[dependency-groups]
|
|
|
|
|
dev = [
|
2024-12-20 17:02:31 +00:00
|
|
|
"mypy[faster-cache]==1.14.0",
|
2024-12-19 15:25:25 +00:00
|
|
|
"ruff==0.8.4",
|
2024-11-28 01:36:55 +00:00
|
|
|
"tomli==2.2.1",
|
2024-12-21 03:22:15 +00:00
|
|
|
"types-aiofiles==24.1.0.20241221",
|
2024-10-01 15:53:42 +03:00
|
|
|
"typing-extensions==4.12.2",
|
|
|
|
|
]
|
2024-12-17 16:42:33 +00:00
|
|
|
nuitka = ["nuitka==2.5.7"]
|