2025-11-13 13:00:50 -08:00
|
|
|
[project]
|
|
|
|
|
name = "claude-collector"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Extract and sanitize Claude Code conversation data for training datasets"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.8"
|
|
|
|
|
license = {text = "MIT"}
|
|
|
|
|
authors = [
|
|
|
|
|
{name = "Hanzo AI", email = "hello@hanzo.ai"}
|
|
|
|
|
]
|
|
|
|
|
keywords = ["claude", "ai", "dataset", "training", "llm"]
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
|
"rich>=13.0.0",
|
|
|
|
|
"click>=8.0.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
claude-collector = "claude_collector.cli:main"
|
|
|
|
|
|
2025-11-14 06:46:51 -08:00
|
|
|
[project.optional-dependencies]
|
|
|
|
|
test = [
|
|
|
|
|
"pytest>=7.0.0",
|
|
|
|
|
"pytest-cov>=4.0.0",
|
|
|
|
|
]
|
|
|
|
|
|
2025-11-13 13:00:50 -08:00
|
|
|
[project.urls]
|
2025-11-14 06:46:51 -08:00
|
|
|
Homepage = "https://github.com/zenlm/claude-collector"
|
|
|
|
|
Repository = "https://github.com/zenlm/claude-collector"
|
2025-11-13 13:00:50 -08:00
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
2025-11-14 06:46:51 -08:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
python_files = ["test_*.py"]
|
|
|
|
|
python_classes = ["Test*"]
|
|
|
|
|
python_functions = ["test_*"]
|
|
|
|
|
addopts = "-v --cov=claude_collector --cov-report=term-missing"
|