-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
67 lines (58 loc) · 1.47 KB
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chuk-sessions"
version = "0.6.2"
description = "CHUK Sessions provides a comprehensive, async-first session management system with automatic expiration, and support for both in-memory and Redis storage backends. Perfect for web applications, MCP servers, API gateways, and microservices that need reliable, scalable session handling."
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.11"
# Core dependencies - only what's needed for memory provider
dependencies = [
"csrf>=0.1b1",
"pydantic>=2.10.6",
"pyyaml>=6.0.2",
]
[project.optional-dependencies]
# Redis support
redis = [
"redis>=6.2.0",
]
# Development dependencies
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"pytest-cov>=5.0.0",
"ruff>=0.4.6",
"mypy>=1.0.0",
"bandit>=1.7.0",
"twine>=5.0.0",
"psutil>=7.0.0",
]
# All optional dependencies
all = [
"redis>=6.2.0",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["chuk_sessions*"]
[tool.setuptools.package-data]
chuk_sessions = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-v"
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"pytest-cov>=5.0.0",
"ruff>=0.4.6",
"mypy>=1.0.0",
"bandit>=1.7.0",
"twine>=5.0.0",
"psutil>=7.0.0",
]