forked from Ge0rg3/requests-ip-rotator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
70 lines (65 loc) · 1.89 KB
/
setup.cfg
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[metadata]
name = requests-ip-rotator
version = attr: requests_ip_rotator.__version__
description = Rotate through IPs in Python using AWS API Gateway.
long_description = file: docs/README.md, docs/CHANGELOG.md, docs/LICENSE
url = https://github.com/circlenaut/requests-ip-rotator
author = "George Omnet, Phillip Strefling",
author_email = "pypi@georgeom.net, phillip@strefling.pro",
license = GPLv3+
keywords = requests, ip-rotator, scraper, change-ip
classifiers =
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.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Scientific/Engineering
Topic :: System :: Archiving
Topic :: Internet :: WWW/HTTP :: Indexing/Search
Topic :: Internet :: WWW/HTTP
project_urls =
Documentation = https://github.com/circlenaut/requests-ip-rotator
Source = https://github.com/circlenaut/requests-ip-rotator
Tracker = https://github.com/circlenaut/requests-ip-rotator/issues
[options]
zip_safe = False
include_package_data = True
package_dir =
= src
packages = find:
platforms = any
python_requires = >=3.7, <4
setup_requires =
setuptools_scm
install_requires =
boto3
pydantic
requests
[bdist_wheel]
universal = 1
[options.packages.find]
where = src
include =
requests_ip_rotator
requests_ip_rotator.*
[flake8]
author-attribute = forbidden
no-accept-encodings = True
assertive-snakecase = True
inline-quotes = "
multiline-quotes = """
docstring-quotes = """
application-import-names = requests-ip-rotator
hang_closing = false
doctests = false
max-complexity = 10
exclude =
.git
__pycache__
build
dist