-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 840 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 840 Bytes
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "proxy11"
version = "1.0.1"
description = "Lightweight Python client for the Proxy11 free proxy API"
readme = "README.md"
license = "MIT"
requires-python = ">=3.6"
authors = [
{name = "Proxy11", email = "info@proxy11.com"},
]
keywords = ["proxy", "free-proxy", "proxy-list", "web-scraping", "proxy-api"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Internet :: Proxy Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests>=2.20",
]
[project.urls]
Homepage = "https://proxy11.com"
Documentation = "https://proxy11.com/apidoc"
Repository = "https://github.com/lr2bmail/proxy11-python"
[tool.setuptools.packages.find]
include = ["proxy11*"]