-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
92 lines (78 loc) · 1.89 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
81
82
83
84
85
86
87
88
89
90
91
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.2",
]
[project]
name = "dogpile.cache"
description = "A caching front-end based on the Dogpile lock."
readme = "README.rst"
keywords = ["caching"]
authors = [{name = "Mike Bayer", email = "[email protected]"}]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dependencies = [
"decorator>=4.0.0",
"stevedore>=3.0.0",
"typing_extensions>=4.0.1;python_version<'3.11'",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/sqlalchemy/dogpile.cache"
Documentation = "https://dogpilecache.sqlalchemy.org"
"Issue Tracker" = "https://github.com/sqlalchemy/dogpile.cache/"
[project.optional-dependencies]
pifpaf = [
"pifpaf>=3.2.0",
]
pymemcache = [
"pymemcache",
]
memcached = [
"python-memcached",
]
bmemcached = [
"python-binary-memcached",
]
pylibmc = [
"pylibmc",
]
redis = [
"redis",
]
[project.entry-points."mako.cache"]
"dogpile.cache" = "dogpile.cache.plugins.mako_cache:MakoPlugin"
[tool.setuptools]
zip-safe = false
include-package-data = true
package-dir = {"" = "."}
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
exclude = [
"tests",
"tests.*",
]
namespaces = false
[tool.setuptools.exclude-package-data]
dogpile = ["tests*"]
[tool.setuptools.package-data]
dogpile = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "dogpile.__version__"}
[tool.black]
line-length = 79
target-version = ['py38']
[tool.pytest.ini_options]
addopts = "--tb native -v -r fxX -p no:logging -p no:warnings -m 'not time_intensive'"
python_files = "tests/*test_*.py"
python_classes = "*Test"
filterwarnings = [
"error"
]