vinv 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- vinv-0.0.0/.gitignore +65 -0
- vinv-0.0.0/PKG-INFO +22 -0
- vinv-0.0.0/README.md +10 -0
- vinv-0.0.0/pyproject.toml +23 -0
- vinv-0.0.0/vinv/__init__.py +3 -0
vinv-0.0.0/.gitignore
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
.venv/
|
|
5
|
+
*.egg-info/
|
|
6
|
+
.pytest_cache/
|
|
7
|
+
.ruff_cache/
|
|
8
|
+
uv.lock.orig
|
|
9
|
+
|
|
10
|
+
# Rust
|
|
11
|
+
target/
|
|
12
|
+
|
|
13
|
+
# Node
|
|
14
|
+
node_modules/
|
|
15
|
+
out/
|
|
16
|
+
dist/
|
|
17
|
+
*.vsix
|
|
18
|
+
.vscode-test/
|
|
19
|
+
|
|
20
|
+
# Vinv workspace state (per-repo runtime data)
|
|
21
|
+
.vinv/
|
|
22
|
+
|
|
23
|
+
# Local env & secrets
|
|
24
|
+
.env
|
|
25
|
+
*.pem
|
|
26
|
+
|
|
27
|
+
# Databases
|
|
28
|
+
*.db
|
|
29
|
+
*.db-shm
|
|
30
|
+
*.db-wal
|
|
31
|
+
|
|
32
|
+
# OS
|
|
33
|
+
.DS_Store
|
|
34
|
+
*.stackdump
|
|
35
|
+
|
|
36
|
+
# Models & large artifacts
|
|
37
|
+
models/
|
|
38
|
+
*.gguf
|
|
39
|
+
*.safetensors
|
|
40
|
+
# Coverage artifacts. pytest-cov writes these into whichever package directory
|
|
41
|
+
# it ran from, so they appear under exerciser/, tracelens/, … rather than at the
|
|
42
|
+
# root — and `cov.json` is half a megabyte of machine output nobody reviews.
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
cov.json
|
|
46
|
+
htmlcov/
|
|
47
|
+
|
|
48
|
+
# Local build output, logs, and stray virtualenvs
|
|
49
|
+
/_winbuild/
|
|
50
|
+
/_wintest_venv/
|
|
51
|
+
/list/
|
|
52
|
+
/.ccache/
|
|
53
|
+
build/
|
|
54
|
+
*.log
|
|
55
|
+
nuitka-crash-report.xml
|
|
56
|
+
|
|
57
|
+
# The published notices file — served from notices.vinv.ai, edited and uploaded
|
|
58
|
+
# out of band. The example inside it is the format reference; see AGENTS.md.
|
|
59
|
+
/.github/assets/notices.json
|
|
60
|
+
|
|
61
|
+
# Local editor / agent config (not part of the public release).
|
|
62
|
+
/.claude/
|
|
63
|
+
/.cursor/
|
|
64
|
+
.vscode/
|
|
65
|
+
|
vinv-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: vinv
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Vinv — runs, tests, and finds issues in your services with zero code changes. Name reserved; the packaged engines ship soon.
|
|
5
|
+
Project-URL: Homepage, https://vinv.ai
|
|
6
|
+
Project-URL: Repository, https://github.com/VinvAI/VinvAI
|
|
7
|
+
Author-email: VinvAI <support@vinv.ai>
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
Keywords: ai,mcp,python,runtime-tracing,testing
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# Vinv
|
|
14
|
+
|
|
15
|
+
**Vinv runs, tests, and finds issues in your services — with zero code changes.**
|
|
16
|
+
|
|
17
|
+
This distribution reserves the `vinv` name for the [Vinv](https://vinv.ai)
|
|
18
|
+
engines. The packaged release (all engines + the semantic index, installable
|
|
19
|
+
with `pip install vinv`) is on the way. See
|
|
20
|
+
[github.com/VinvAI/VinvAI](https://github.com/VinvAI/VinvAI).
|
|
21
|
+
|
|
22
|
+
Apache-2.0.
|
vinv-0.0.0/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Vinv
|
|
2
|
+
|
|
3
|
+
**Vinv runs, tests, and finds issues in your services — with zero code changes.**
|
|
4
|
+
|
|
5
|
+
This distribution reserves the `vinv` name for the [Vinv](https://vinv.ai)
|
|
6
|
+
engines. The packaged release (all engines + the semantic index, installable
|
|
7
|
+
with `pip install vinv`) is on the way. See
|
|
8
|
+
[github.com/VinvAI/VinvAI](https://github.com/VinvAI/VinvAI).
|
|
9
|
+
|
|
10
|
+
Apache-2.0.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "vinv"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Vinv — runs, tests, and finds issues in your services with zero code changes. Name reserved; the packaged engines ship soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [{ name = "VinvAI", email = "support@vinv.ai" }]
|
|
13
|
+
keywords = ["ai", "testing", "runtime-tracing", "mcp", "python"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://vinv.ai"
|
|
17
|
+
Repository = "https://github.com/VinvAI/VinvAI"
|
|
18
|
+
|
|
19
|
+
# NOTE: this is the release-assembly package for PyPI. Today it is a 0.0.0
|
|
20
|
+
# name-reservation placeholder; Phase 1 turns it into the single `vinv`
|
|
21
|
+
# distribution that bundles every engine module + the Rust `index` binary.
|
|
22
|
+
[tool.hatch.build.targets.wheel]
|
|
23
|
+
packages = ["vinv"]
|