-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 2.57 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (64 loc) · 2.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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "coldforge"
version = "0.1.0"
description = "Honest, local-first cold outreach toolkit: research → personalize → sequence → send → follow. CLI + MCP, no SaaS required."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "Makeph" }]
keywords = ["cold-email", "outreach", "prospecting", "mcp", "sales", "recruiting"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications :: Email",
"Topic :: Office/Business",
]
# Core stays tiny and pure-stdlib-friendly. Everything else is an opt-in extra
# so the tool runs end-to-end (research + draft + send + follow) with zero paid
# API keys and degrades gracefully when an extra is missing.
dependencies = [
"typer>=0.12",
"rich>=13.0",
"pyyaml>=6.0",
"requests>=2.31",
]
[project.optional-dependencies]
ai = ["anthropic>=0.40"] # LLM personalization via the Anthropic API (falls back to template fill)
mcp = ["mcp>=1.2"] # expose research_prospect / draft_email over MCP
dns = ["dnspython>=2.6"] # SPF/DKIM/DMARC checks without DNS-over-HTTPS
dev = ["pytest>=8.0", "ruff>=0.16,<0.17"]
all = ["anthropic>=0.40", "mcp>=1.2", "dnspython>=2.6"]
[project.urls]
Homepage = "https://github.com/Makeph/coldforge"
Repository = "https://github.com/Makeph/coldforge"
[project.scripts]
coldforge = "coldforge.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["coldforge"]
# The curated template pack (.md) ships inside the package and is loaded at
# runtime, so it must be in the wheel alongside the .py sources.
artifacts = ["coldforge/templates/**/*.md"]
[tool.ruff]
line-length = 100
target-version = "py310"
# Selected explicitly: ruff's implicit default set grows with each release, so
# relying on it means a new ruff turns a green CI red without a code change.
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "C4", "SIM", "FURB", "RUF"]
ignore = [
"B008", # Typer declares CLI options as call-valued defaults; that's the API.
"SIM105", # contextlib.suppress reads worse than the try/except it replaces here.
"RUF001", # → and × are deliberate in the prose, the CLI help and the FR templates.
"RUF002",
"RUF003",
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["E501"]