-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 949 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (27 loc) · 949 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>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "roamproxy"
version = "0.1.0"
description = "Lightweight Python SDK for the RoamProxy residential & datacenter proxy gateway"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "RoamProxy", email = "dev@roamproxy.com" }]
requires-python = ">=3.8"
keywords = ["proxy", "residential-proxy", "socks5", "web-scraping", "rotating-proxy"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Topic :: Internet :: Proxy Servers",
]
[project.optional-dependencies]
requests = ["requests>=2.25"]
socks = ["requests[socks]>=2.25"]
dev = ["pytest"]
[project.urls]
Homepage = "https://roamproxy.com?utm_source=github&utm_medium=referral"
Repository = "https://github.com/roamproxy/roamproxy-python"
[tool.setuptools]
packages = ["roamproxy"]