-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 1.14 KB
/
pyproject.toml
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
[project]
name = "urllib3_sigv4"
version = "0.4.1"
description = "Extension to urllib3 adding support for AWS Signature Version 4"
readme = "README.md"
keywords = ["urllib", "aws", "sigv4"]
authors = [{ name = "Tomáš Linhart", email = "[email protected]" }]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
]
urls = { Homepage = "https://github.com/tlinhart/urllib3-sigv4" }
requires-python = ">=3.8"
dependencies = ["boto3>=1.3.1,<1.37.0", "urllib3>=2.0.0,<3.0.0"]
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
urllib3_sigv4 = ["py.typed"]
[tool.ruff]
cache-dir = "~/.cache/ruff"
line-length = 79
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.ruff.lint.isort]
split-on-trailing-comma = false
[tool.ruff.format]
skip-magic-trailing-comma = true
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
filterwarnings = ["error", "ignore::DeprecationWarning:botocore"]