-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (77 loc) · 2.26 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (77 loc) · 2.26 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[project]
name = "venv-axi"
dynamic = ["version"]
description = "An Agent eXperience Interface (AXI) for querying venv dependencies."
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICEN[CS]E*", "COPYRIGHT"]
authors = [
{ name = "Andrew Ridyard", email = "andyrids.culprit320@passmail.com" },
]
requires-python = ">=3.11"
keywords = []
classifiers = [
# 3 - Alpha | 4 - Beta | 5 - Production/Stable
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
dependencies = []
[project.optional-dependencies]
mcp = ["fastmcp>=0.1.0"]
[dependency-groups]
dev = [
"coverage>=7.14.1",
"fastmcp>=0.1.0",
"numpy",
"pkgdx",
"polars",
"pytest>=9.1.1",
]
[project.scripts]
venvaxi = "venvaxi.__main__:main"
[project.urls]
Repository = "https://github.com/andyrids/venv-axi"
Issues = "https://github.com/andyrids/venv-axi/issues"
Changelog = "https://github.com/andyrids/venv-axi/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.coverage.run]
omit = ["tests/*", "*/src_test*/*"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
version_scheme = "guess-next-dev"
[tool.hatch.build.targets.sdist]
exclude = [
"/.uv-cache",
]
[tool.hatch.build.targets.wheel]
# NOTE: The distribution name (`venv-axi`) does not match the import name
# (`venvaxi`), so hatchling cannot infer the package directory.
packages = ["src/venvaxi"]
exclude = [
"/.uv-cache",
]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib", "-m", "not conformance"]
log_cli = true
log_cli_level = "INFO"
tmp_path_retention_policy = "failed"
markers = [
"conformance: real-dependency conformance tier (opt-in, -m conformance)",
]
# NOTE: `pkgdx` is not on PyPI - it ships to a GitLab project package
# registry, which is publicly readable (no auth required).
[[tool.uv.index]]
name = "gitlab-pkgdx"
url = "https://gitlab.com/api/v4/projects/82928123/packages/pypi/simple"
explicit = true
[tool.uv.sources]
pkgdx = { index = "gitlab-pkgdx" }