feat(v3): PR 9 - MVP CLI (8 commands) + pyproject.toml

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
sinmb79
2026-03-29 12:03:07 +09:00
parent 65481eb9e4
commit 6c5c1b9d50
3 changed files with 376 additions and 0 deletions

47
pyproject.toml Normal file
View File

@@ -0,0 +1,47 @@
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "blog-writer"
version = "3.0.0.dev0"
description = "AI-powered blog and shorts automation engine"
requires-python = ">=3.11"
dependencies = [
"click>=8.1",
"rich>=13.0",
"requests>=2.31",
"python-dotenv>=1.0",
"edge-tts>=6.1",
"Pillow>=10.0",
"pydub>=0.25",
]
[project.optional-dependencies]
tts = [
"openai>=1.0",
"elevenlabs>=1.0",
]
video = [
"fal-client>=0.4",
]
dev = [
"pytest>=7.4",
"black>=23.0",
"ruff>=0.1",
]
[project.scripts]
bw = "blogwriter.cli:main"
[tool.setuptools.packages.find]
include = ["blogwriter*", "bots*", "dashboard*"]
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.ruff]
line-length = 100
target-version = "py311"