forked from jmdaly/llm-github-copilot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 744 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 744 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
32
[project]
name = "llm-github-copilot"
version = "0.2"
description = "GitHub Copilot plugin for LLM CLI tool"
readme = "README.md"
authors = [{ name = "John M Daly" }]
license = { text = "Apache-2.0" }
classifiers = ["License :: OSI Approved :: Apache Software License"]
dependencies = ["llm", "httpx"]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/jmdaly/llm-github-copilot"
Issues = "https://github.com/jmdaly/llm-github-copilot/issues"
[project.entry-points.llm]
github_copilot = "llm_github_copilot"
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio",
"pytest-vcr",
"vcrpy",
"watching-testrunner",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.uv]
package = true