-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
67 lines (60 loc) · 1.86 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
[metadata]
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = LICENSE
python_requires = >=3.9
install_requires =
chardet ~= 5.2.0
requests ~= 2.32.3
tqdm ~= 4.67.1
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Environment :: Web Environment
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
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
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Internet :: WWW/HTTP
Topic :: Software Development :: Libraries
project_urls =
Changelog = https://github.com/thewebscraping/tls-requests/blob/main/CHANGELOG.md
Documentation = https://thewebscraping.github.io/tls-requests/
Source = https://github.com/thewebscraping/tls-requests
Homepage = https://github.com/thewebscraping/tls-requests
[options]
zip_safe = False
include_package_data = True
packages = find:
[options.packages.find]
exclude =
examples*
tools*
docs*
[flake8]
max-line-length = 120
ignore = F821, E203, W503, E501, E231
per-file-ignores =
__init__.py: F405, F403, E402, F401
[tool.black]
line-length = 120
include = '\.pyi?$'
unstable = true
[tool.isort]
atomic = true
profile = "black"
line_length = 120
skip_gitignore = true
skip_glob = ["tests/data", "profiling"]
known_first_party = ["black", "blib2to3", "blackd", "_black_version"]
add_imports = "from __future__ import annotations"