-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (54 loc) · 1.99 KB
/
setup.py
File metadata and controls
56 lines (54 loc) · 1.99 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
import pathlib
from setuptools import setup, find_packages
location = pathlib.Path(__file__).parent
README = (location / "README.md").read_text(encoding="utf-8")
setup(
name="requests-ip-rotator",
version="1.0.18",
description="A Python library to rotate IP addresses using AWS API Gateway",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Ge0rg3/requests-ip-rotator",
project_urls={
"Bug Reports": "https://github.com/Ge0rg3/requests-ip-rotator/issues",
"Source": "https://github.com/Ge0rg3/requests-ip-rotator",
"Documentation": "https://github.com/Ge0rg3/requests-ip-rotator#readme",
},
author="George Omnet",
author_email="pypi@georgeom.net",
maintainer="George Omnet",
maintainer_email="pypi@georgeom.net",
license="GPLv3+",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: Proxy Servers",
"Framework :: AsyncIO",
],
packages=find_packages(include=["requests_ip_rotator", "requests_ip_rotator.*"]),
include_package_data=True,
install_requires=["boto3", "requests"],
python_requires=">=3.9",
keywords=[
"aws",
"api-gateway",
"ip-rotation",
"proxy",
"requests",
"web-scraping",
"http-client",
],
platforms=["any"],
zip_safe=False,
)