This repository was archived by the owner on May 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.58 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "ProxyGrab"
version = "1.2.10"
description = "Asynchronous Library to scrap proxies for my web scrapping applications and other testing purposes"
authors = ["Divkix <divkix@divkix.me>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Divkix/ProxyGrab"
repository = "https://github.com/Divkix/ProxyGrab"
documentation= "https://proxygrab.divkix.me"
keywords = ["proxygrab", "proxy scrapper", "proxy grabber"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
include = [
"LICENSE",
]
[tool.poetry.scripts]
proxygrab = "proxygrab.cmdline:clicmd"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Divkix/ProxyGrab/issues"
"Community" = "https://t.me/DivideProjects"
[tool.poetry.dependencies]
python = "^3.7"
aiodns = "^3.0.0"
aiohttp = "^3.8.1"
beautifulsoup4 = "^4.10.0"
cchardet = "^2.1.7"
click = "^8.1.2"
lxml = "^4.8.0"
ujson = "^5.1.0"
[tool.poetry.dev-dependencies]
black = "^23.1"
isort = "^5.8.0"
mkdocs = "^1.1.2"
mkdocs-git-revision-date-plugin = "^0.3.1"
mkdocs-material = "^9.0.12"
pre-commit = "^2.12.0"
pyclean = "^2.0.0"
pylint = "^2.7.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"