-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.7 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
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "sanic-redis"
dynamic = ["version"]
description = "Adds redis support to Sanic"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
keywords = ["sanic", "redis", "hiredis"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP :: Session",
]
dependencies = ["sanic", "redis>=5.0.0,<6.0", "hiredis>=2.3.2,<3.0"]
[project.optional-dependencies]
test = [
"sanic-testing>=22.9.0",
"pytest==8.0.*",
"coverage",
"beautifulsoup4",
"pytest-sanic",
"pytest-benchmark",
"chardet==3.*",
"flake8",
"black",
"isort>=5.0.0",
"bandit",
"mypy>=0.901,<0.910",
"docutils",
"pygments",
"uvicorn<0.15.0",
"slotscheck>=0.8.0,<1",
]
[project.urls]
Homepage = "https://github.com/strahe/sanic-redis"
[tool.setuptools]
packages = ["sanic_redis"]
zip-safe = false
[tool.setuptools_scm]
version_file = "sanic_redis/_version.py"
[tool.setuptools.dynamic]
version = { attr = "sanic_redis._version.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]