-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (44 loc) · 1.21 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
[project]
name = "vcf_analysis_agent"
version = "0.1.0"
description = "VCF Analysis Agent using bcftools, strands, and AI."
authors = [
{ name = "elementalcollision", email = "your-email@example.com" }
]
requires-python = ">=3.10"
dependencies = [
"pytest",
"pytest-cov",
"pre-commit",
# "bcftools", # Python wrapper, if available on PyPI
# "strands", # If available on PyPI
]
[project.optional-dependencies]
cli-validation = [
"docstring-parser>=0.15",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"tomli>=2.0.0; python_version<'3.11'",
"PyYAML>=6.0"
]
dev = [
"black",
"isort",
"flake8",
"mypy"
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
# backend-path is not strictly necessary if setup.py is not used and pyproject.toml has all info
# but can be kept for clarity or future use with setup.cfg/setup.py
# backend-path = ["."]
[tool.coverage.run]
source = ["src/vcf_agent"]
[tool.coverage.paths]
metrics_file_rename = [
"src/vcf_agent/metrics.py", # New, correct path for reporting
"src/vcf_agent/logging_metrics.py" # Old path present in .coverage data
]
[tool.pytest.ini_options]
# ... existing code ...