vernier 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.
@@ -0,0 +1,46 @@
1
+ # Rust
2
+ /target
3
+ **/*.rs.bk
4
+ Cargo.lock.bak
5
+
6
+ # Reservation skeletons each compile into their own target/ since they are
7
+ # standalone packages outside the main workspace.
8
+ /tools/reservations/**/target/
9
+ /tools/reservations/**/Cargo.lock
10
+
11
+ # Python
12
+ __pycache__/
13
+ *.py[cod]
14
+ *$py.class
15
+ *.so
16
+ *.pyd
17
+ .Python
18
+ .pytest_cache/
19
+ .ruff_cache/
20
+ .pyright/
21
+ .mypy_cache/
22
+ *.egg-info/
23
+ build/
24
+ dist/
25
+
26
+ # uv / venv
27
+ .venv/
28
+ .env
29
+ .python-version.local
30
+
31
+ # Maturin
32
+ /python/vernier/_core*.so
33
+ /python/vernier/_core*.pyd
34
+
35
+ # Editors
36
+ .idea/
37
+ .vscode/
38
+ *.swp
39
+ *.swo
40
+ .DS_Store
41
+
42
+ # Profiling outputs
43
+ *.prof
44
+ flamegraph.svg
45
+ samply-*.json.gz
46
+ perf.data*
vernier-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: vernier
3
+ Version: 0.0.0
4
+ Summary: Name reservation for the vernier evaluation library. The real wheel ships at >=0.1.0.
5
+ Project-URL: Homepage, https://github.com/NoeFontana/vernier
6
+ Project-URL: Repository, https://github.com/NoeFontana/vernier
7
+ Project-URL: Issues, https://github.com/NoeFontana/vernier/issues
8
+ Author: The vernier authors
9
+ License: MIT OR Apache-2.0
10
+ Keywords: coco,computer-vision,detection,evaluation,metrics
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Programming Language :: Python :: 3 :: Only
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
22
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
23
+ Requires-Python: >=3.10
24
+ Description-Content-Type: text/markdown
25
+
26
+ # vernier (PyPI name reservation)
27
+
28
+ This is a placeholder v0.0.0 release that claims the `vernier` name on
29
+ PyPI. It contains no code beyond a stub `__init__.py` exposing
30
+ `__version__`.
31
+
32
+ The real `vernier` wheel — a high-performance, parity-preserving
33
+ COCO-style evaluator written in Rust with PyO3 bindings — will land at
34
+ v0.1.0 or later. Track <https://github.com/NoeFontana/vernier>.
35
+
36
+ Once the real wheel ships, `pip install vernier` will fetch it directly.
37
+ This placeholder is here so nobody else can squat the name in the
38
+ meantime.
39
+
40
+ License: MIT OR Apache-2.0.
@@ -0,0 +1,15 @@
1
+ # vernier (PyPI name reservation)
2
+
3
+ This is a placeholder v0.0.0 release that claims the `vernier` name on
4
+ PyPI. It contains no code beyond a stub `__init__.py` exposing
5
+ `__version__`.
6
+
7
+ The real `vernier` wheel — a high-performance, parity-preserving
8
+ COCO-style evaluator written in Rust with PyO3 bindings — will land at
9
+ v0.1.0 or later. Track <https://github.com/NoeFontana/vernier>.
10
+
11
+ Once the real wheel ships, `pip install vernier` will fetch it directly.
12
+ This placeholder is here so nobody else can squat the name in the
13
+ meantime.
14
+
15
+ License: MIT OR Apache-2.0.
@@ -0,0 +1,35 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.24"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "vernier"
7
+ version = "0.0.0"
8
+ description = "Name reservation for the vernier evaluation library. The real wheel ships at >=0.1.0."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "MIT OR Apache-2.0" }
12
+ authors = [{ name = "The vernier authors" }]
13
+ keywords = ["evaluation", "metrics", "computer-vision", "detection", "coco"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Intended Audience :: Developers",
17
+ "Intended Audience :: Science/Research",
18
+ "License :: OSI Approved :: MIT License",
19
+ "License :: OSI Approved :: Apache Software License",
20
+ "Programming Language :: Python :: 3 :: Only",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Programming Language :: Python :: 3.13",
25
+ "Programming Language :: Python :: 3.14",
26
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
27
+ ]
28
+
29
+ [project.urls]
30
+ Homepage = "https://github.com/NoeFontana/vernier"
31
+ Repository = "https://github.com/NoeFontana/vernier"
32
+ Issues = "https://github.com/NoeFontana/vernier/issues"
33
+
34
+ [tool.hatch.build.targets.wheel]
35
+ packages = ["src/vernier"]
@@ -0,0 +1,8 @@
1
+ """Name reservation for the vernier evaluation library.
2
+
3
+ This v0.0.0 release exists only to claim the `vernier` name on PyPI.
4
+ The real wheel will land at v0.1.0 — see https://github.com/NoeFontana/vernier
5
+ for status.
6
+ """
7
+
8
+ __version__ = "0.0.0"