- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
Latest commit
31 lines (28 loc) · 593 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (28 loc) · 593 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
28
29
30
31
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-code"
version = "0.1.0"
description = "Open Source CLI Coding Agent"
authors = [
{ name = "Open Source CLI Coding Agent Contributors" }
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"typer",
"httpx",
"pydantic",
"gitpython",
"toml",
"pyyaml",
"python-slugify",
"beautifulsoup4",
"chardet"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["deep_code*"]
[project.scripts]
deep-code = "deep_code.cli.entry:main"