-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (48 loc) · 1.33 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
[project]
name = "template-github-copilot"
version = "0.1.0"
description = "A comprehensive templates for GitHub Copilot"
requires-python = ">=3.13"
dependencies = [
"azure-ai-projects>=2.0.0b3",
"azure-identity>=1.25.2",
"azure-storage-blob>=12.28.0",
"fastapi>=0.115.0",
"github-copilot-sdk>=0.1.25",
"httpx>=0.28.1",
"openai>=1.0.0",
"pydantic-settings>=2.13.1",
"python-dotenv>=1.2.1",
"typer>=0.24.1",
"uvicorn[standard]>=0.34.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"coverage>=7.13.4",
"pre-commit>=4.5.1",
"pyrefly>=0.53.0",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.15.2",
"ty>=0.0.18",
]
docs = [
"mkdocs-material>=9.7.3",
"mkdocs-static-i18n>=1.3.1",
]
[tool.pytest.ini_options]
addopts = "-ra --cov"
testpaths = ["tests"]
pythonpath = ['.']
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.pyrefly]
# Tutorial scripts run standalone (their own directory is on sys.path), so the
# shared `_telemetry` helper is imported as a top-level module. Add the tutorials
# directory as a search root so the static checker resolves it the same way.
search-path = ["scripts/tutorials"]