-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (73 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
80 lines (73 loc) · 1.57 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
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "skrift"
version = "0.1.0a86"
description = "A lightweight async Python CMS for crafting modern websites"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"litestar[jinja,cryptography]>=2.14.0",
"fast-query-parsers>=1.0.2",
"sqlalchemy[asyncio]>=2.0.36",
"aiosqlite>=0.20.0",
"asyncpg>=0.30.0",
"advanced-alchemy>=0.26.0",
"alembic>=1.14.0",
"httpx>=0.28.0",
"pydantic-settings>=2.7.0",
"python-dotenv>=1.0.0",
"hypercorn>=0.17.0",
"pyyaml>=6.0.0",
"ruamel.yaml>=0.18.0",
"markdown-it-py>=3.0.0",
"mdit-py-plugins>=0.4.0",
"pillow>=10.0.0",
"aiosmtplib>=3.0.0",
]
[project.scripts]
skrift = "skrift.cli:cli"
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"redis>=5.0.0",
"fakeredis[lua]>=2.21.0",
]
docs = [
"zensical>=0.0.19",
]
[tool.hatch.build]
include = [
"skrift/**/*.py",
"skrift/templates/**/*.html",
"skrift/static/**/*",
"skrift/alembic/**/*",
"skrift/alembic.ini",
"skrift/claude_skill/**/*.md",
"skrift/data/**/*.txt",
"skrift/data/**/*.json",
]
exclude = [
"**/__pycache__",
"**/*.pyc",
"app.yaml",
"*.db",
]
[project.optional-dependencies]
docs = ["zensical>=0.0.19"]
redis = ["redis>=5.0.0"]
logfire = ["logfire[asgi,sqlalchemy,httpx]>=3.0.0"]
push = [
"pywebpush>=2.0.0",
]
passkeys = [
"webauthn>=2.2.0",
]
s3 = ["aioboto3>=13.0.0"]
[tool.ruff]
line-length = 100
target-version = "py313"