-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 991 Bytes
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 991 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
32
33
34
35
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rotating_proxy"
version = "0.3.2"
authors = [
{name = "Will"}
]
description = "A Python package for managing and using rotating proxies"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Internet :: Proxy Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests>=2.32.4",
"typing>=3.7.4.3",
"python-dateutil>=2.9.0",
"urllib3>=2.6.0",
'dataclasses>=0.8; python_version < "3.7"',
]
[project.urls]
Homepage = "https://github.com/Will6855/rotating-proxy"