nodii-dsar 0.0.2__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
+ node_modules/
2
+ dist/
3
+ build/
4
+ coverage/
5
+ .DS_Store
6
+ *.log
7
+ .env
8
+ .env.local
9
+ .env.*.local
10
+ .turbo/
11
+ .bun/
12
+
13
+ # AI review loop artifacts (scripts/review/ai-review.ts)
14
+ .claude-pre-review.md
15
+ .claude-pre-review.json
16
+ .claude/pending-patches/
17
+
18
+ # Agent session state (not committed; per-session)
19
+ .claude/endpoints-snapshot.json
20
+ .agent-todo.md
21
+
22
+ # Python (uv)
23
+ .venv/
24
+ __pycache__/
25
+ *.pyc
26
+ *.pyo
27
+ .mypy_cache/
28
+ .ruff_cache/
29
+ .pytest_cache/
30
+ htmlcov/
31
+ .coverage
32
+ .coverage.*
33
+ coverage.xml
34
+
35
+ # Go
36
+ *.test
37
+ *.out
38
+ go.work.sum
39
+
40
+ # Generated proto artifacts (regenerate via `bun proto:gen`)
41
+ ts/_generated/
42
+ python/_generated/
43
+ go/_generated/
44
+
45
+ # Test-stack volumes (docker-compose persistent data)
46
+ infra/test-stack/data/
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: nodii-dsar
3
+ Version: 0.0.2
4
+ Summary: Placeholder for nodii-dsar — implementation lands at v0.1.0
5
+ Project-URL: Homepage, https://github.com/cognion-nucleus/nodii-libs
6
+ Project-URL: Repository, https://github.com/cognion-nucleus/nodii-libs
7
+ Author-email: Nodii <ops@nodii.co>
8
+ License: MIT
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Requires-Python: >=3.11
@@ -0,0 +1,5 @@
1
+ # nodii-dsar
2
+
3
+ Placeholder package at v0.0.1. Implementation lands at v0.1.0 per the locked feature_doc.
4
+
5
+ **Spec**: `https://planning.dev.nucleus-cloud.in/api/v1/feature-docs?serviceId=nodii-libs&docKey=dsar`
@@ -0,0 +1,25 @@
1
+ [project]
2
+ name = "nodii-dsar"
3
+ version = "0.0.2"
4
+ description = "Placeholder for nodii-dsar — implementation lands at v0.1.0"
5
+ requires-python = ">=3.11"
6
+ license = { text = "MIT" }
7
+ authors = [{ name = "Nodii", email = "ops@nodii.co" }]
8
+ classifiers = [
9
+ "Programming Language :: Python :: 3",
10
+ "Programming Language :: Python :: 3.11",
11
+ "Programming Language :: Python :: 3.12",
12
+ "License :: OSI Approved :: MIT License",
13
+ ]
14
+ dependencies = []
15
+
16
+ [project.urls]
17
+ Homepage = "https://github.com/cognion-nucleus/nodii-libs"
18
+ Repository = "https://github.com/cognion-nucleus/nodii-libs"
19
+
20
+ [build-system]
21
+ requires = ["hatchling"]
22
+ build-backend = "hatchling.build"
23
+
24
+ [tool.hatch.build.targets.wheel]
25
+ packages = ["src/nodii_dsar"]
@@ -0,0 +1,8 @@
1
+ """nodii-dsar — placeholder at v0.0.1.
2
+
3
+ Implementation lands at v0.1.0 per the locked feature_doc.
4
+ Spec: https://planning.dev.nucleus-cloud.in/api/v1/feature-docs?serviceId=nodii-libs&docKey=dsar
5
+ """
6
+
7
+ __version__ = "0.0.1"
8
+ LIB_NAME = "dsar"
@@ -0,0 +1,9 @@
1
+ from nodii_dsar import LIB_NAME, __version__
2
+
3
+
4
+ def test_lib_name() -> None:
5
+ assert LIB_NAME == "dsar"
6
+
7
+
8
+ def test_version() -> None:
9
+ assert __version__ == "0.0.1"