-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 796 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (24 loc) · 796 Bytes
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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "understudy"
version = "0.1.0"
description = "Learns how you brief your AI agents, then briefs them for you."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = ["llm", "agents", "prompt-engineering", "corpus", "distillation"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
# Standard library only, on purpose: clone and run.
# 刻意零依赖:clone 下来就能跑。
dependencies = []
[project.scripts]
understudy = "understudy.cli:main"
[tool.setuptools.packages.find]
include = ["understudy*"]