-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.46 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "codeclaw"
version = "0.4.6"
description = "Export your Claude Code and Codex conversations to Hugging Face as structured training data"
requires-python = ">=3.10"
license = "MIT"
readme = "README.md"
authors = [
{name = "ychampion"},
]
keywords = ["claude-code", "huggingface", "dataset", "conversations", "training-data"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"huggingface_hub>=0.20.0",
"cryptography>=42.0.0",
"keyring>=24.0.0",
"prompt_toolkit>=3.0.39",
]
[project.urls]
Homepage = "https://github.com/ychampion/codeclaw"
Repository = "https://github.com/ychampion/codeclaw"
Issues = "https://github.com/ychampion/codeclaw/issues"
[project.scripts]
codeclaw = "codeclaw.cli:main"
[project.optional-dependencies]
dev = ["pytest"]
watch = ["watchdog"]
mcp = ["mcp"]
pii-ml = [
"presidio-analyzer>=2.2.0",
"spacy>=3.7.0",
]
finetune = [
"unsloth>=2025.1.0; platform_system != 'Windows'",
"transformers>=4.49.0",
"datasets>=2.20.0",
]
[tool.setuptools.packages.find]
include = ["codeclaw*"]