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:
47
pyproject.toml
Normal file
47
pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user