-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.09 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
42
43
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ProxyEater"
authors = [
{ name = "CodeWriter21 (MehardP21)", email = "[email protected]" },
]
description = "A Python Proxy Scraper for gathering fresh proxies."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
keywords = ['python', 'python3', 'proxy', 'proxylist', 'ProxyEater']
license = { text = "Apache License 2.0" }
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"lxml",
"pandas",
"html5lib",
"requests",
"log21>=2.5.4",
"beautifulsoup4",
"importlib_resources",
"random_user_agent",
]
version = "1.5.3"
[project.urls]
Homepage = "https://github.com/MPCodeWriter21/ProxyEater"
Donations = "https://github.com/MPCodeWriter21/ProxyEater/blob/master/DONATE.md"
Source = "https://github.com/MPCodeWriter21/ProxyEater"
[project.optional-dependencies]
dev = [
"yapf>=0.40.1",
"pylint>=2.17.4",
"docformatter>=1.7.1"
]
[project.scripts]
ProxyEater = "ProxyEater.__main__:main"