-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
34 lines (31 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "continualcode"
version = "0.5.0"
description = "Self-improving coding agent with online SDPO (Self-Distillation Policy Optimization)"
requires-python = ">=3.10"
dependencies = [
"chz",
"tinker>=0.7",
"tinker-cookbook>=0.1",
"torch",
]
readme = { file = "README.md", content-type = "text/markdown" }
license = "MIT"
keywords = ["sdpo", "self-distillation", "coding-agent", "online-learning", "tinker"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/sdan/continualcode"
Documentation = "https://github.com/sdan/continualcode#readme"
Repository = "https://github.com/sdan/continualcode"
Issues = "https://github.com/sdan/continualcode/issues"
[project.scripts]
continualcode = "continualcode.cli:_entrypoint"