-
Notifications
You must be signed in to change notification settings - Fork 121
/
pyproject.toml
81 lines (70 loc) · 2.03 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
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
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "cachecontrol"
[tool.flit.sdist]
include = ["tests/"]
[project]
name = "CacheControl"
dynamic = ["version"]
description = "httplib2 caching for requests"
readme = "README.rst"
license = { file = "LICENSE.txt" }
authors = [
{ name = "Eric Larson", email = "ericlarson@ionrock.com" },
{ name = "Frost Ming", email = "me@frostming.com" },
{ name = "William Woodruff", email = "william@yossarian.net" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
]
keywords = ["requests", "http", "caching", "web"]
dependencies = ["requests >= 2.16.0", "msgpack >= 0.5.2, < 2.0.0"]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://pypi.org/project/CacheControl/"
Issues = "https://github.com/psf/cachecontrol/issues"
Source = "https://github.com/psf/cachecontrol"
[project.optional-dependencies]
# End-user extras.
filecache = ["filelock >= 3.8.0"]
redis = ["redis>=2.10.5"]
# Development extras.
dev = [
"CacheControl[filecache,redis]",
"build",
"cherrypy",
"codespell[tomli]",
"furo",
"mypy",
"pytest",
"pytest-cov",
"ruff",
"sphinx",
"sphinx-copybutton",
"tox",
"types-redis",
"types-requests",
]
[project.scripts]
doesitcache = "cachecontrol._cmd:main"
[tool.mypy]
show_error_codes = true
strict = true
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
[[tool.mypy.overrides]]
module = "msgpack"
ignore_missing_imports = true
[tool.pytest.ini_options]
norecursedirs = ["bin", "lib", "include", "build"]