mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-05 06:46:13 +00:00
6aef3808c1
Update Dockerfile base image, pyproject.toml requirements, and .python-version to use Python 3.14. This includes updating the uv.lock file with the new Python version constraint. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
47 lines
1.4 KiB
TOML
47 lines
1.4 KiB
TOML
[project]
|
|
name = "tuftecms"
|
|
version = "0.1.0"
|
|
description = "A Flask-based CMS for thoughtful writing, inspired by Edward Tufte's design principles"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"flask>=3.1.1",
|
|
"gunicorn>=22.0.0",
|
|
"gevent>=24.2.0",
|
|
"mistune>=3.0.0",
|
|
"pyyaml>=6.0.0",
|
|
"weasyprint>=66.0",
|
|
"pillow>=11.3.0",
|
|
]
|
|
authors = [
|
|
{name = "Kenneth Reitz", email = "me@kennethreitz.org"}
|
|
]
|
|
license = {text = "MIT"}
|
|
keywords = ["cms", "flask", "markdown", "tufte", "sidenotes", "blog", "digital-garden"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.14",
|
|
"Framework :: Flask",
|
|
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
|
|
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/kennethreitz/tuftecms"
|
|
Repository = "https://github.com/kennethreitz/tuftecms"
|
|
Documentation = "https://github.com/kennethreitz/tuftecms#readme"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["tuftecms"]
|
|
|
|
[tool.hatch.build.targets.wheel.force-include]
|
|
"tuftecms/templates" = "tuftecms/templates"
|
|
"tuftecms/static" = "tuftecms/static"
|