-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (48 loc) · 1.35 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
57
[project]
name = "copilot-experiments"
version = "0.2.0"
description = "A library and CLI for building research experiments that exercise GitHub Copilot (primarily Copilot CLI) and collect results."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [{ name = "dbroeglin" }]
keywords = ["github-copilot", "copilot-cli", "research", "experiments", "evaluation"]
dependencies = [
"datacurve-pier>=0.3.0",
"pydantic>=2.6",
"pyyaml>=6.0",
"typer>=0.12",
"rich>=13.7",
]
[project.scripts]
copilot-experiments = "copilot_experiments.cli:app"
[project.urls]
Homepage = "https://github.com/dbroeglin/github-copilot-lab"
Repository = "https://github.com/dbroeglin/github-copilot-lab"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/copilot_experiments"]
[dependency-groups]
dev = [
"pre-commit>=4.0",
"pytest>=8.0",
"ruff>=0.5",
]
[tool.ruff]
line-length = 100
target-version = "py312"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "W"]
# Typer relies on function calls (Argument/Option) in parameter defaults.
ignore = ["B008"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
docstring-code-format = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"