Files
Quince 2099dbb155 lovelace v0.1 — lace-clad lead tracker for Glitch University outreach
Standalone Python CLI + SQLite (stdlib only). Tracks creator leads, which
letters went to which address, replies, and the funnel (prospect → … → live).
Commands: init/add/list/show/set/note/sent/reply/next/stats/export. Lead data
(emails/PII) stays local and is gitignored.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-10 14:01:47 +02:00

12 lines
361 B
Python

from setuptools import setup, find_packages
setup(
name="lovelace",
version="0.1.0",
description="Lace-clad CLI for tracking creator leads and outreach for Glitch University.",
packages=find_packages(),
install_requires=[], # stdlib only
entry_points={"console_scripts": ["lovelace=lovelace.cli:main"]},
python_requires=">=3.9",
)