victor-codegraph 0.0.1__tar.gz → 0.1.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.
Files changed (22) hide show
  1. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/PKG-INFO +1 -1
  2. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/pyproject.toml +1 -1
  3. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph/__init__.py +1 -1
  4. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph.egg-info/PKG-INFO +1 -1
  5. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/README.md +0 -0
  6. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/setup.cfg +0 -0
  7. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/tests/test_adapter.py +0 -0
  8. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/tests/test_python_parser.py +0 -0
  9. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/tests/test_sizing_and_chunk.py +0 -0
  10. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/tests/test_treesitter_jsts.py +0 -0
  11. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph/adapter.py +0 -0
  12. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph/config.py +0 -0
  13. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph/languages.py +0 -0
  14. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph/model.py +0 -0
  15. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph/parser.py +0 -0
  16. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph/python_parser.py +0 -0
  17. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph/sizing.py +0 -0
  18. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph/treesitter_parser.py +0 -0
  19. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph.egg-info/SOURCES.txt +0 -0
  20. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph.egg-info/dependency_links.txt +0 -0
  21. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph.egg-info/requires.txt +0 -0
  22. {victor_codegraph-0.0.1 → victor_codegraph-0.1.0}/victor_codegraph.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: victor-codegraph
3
- Version: 0.0.1
3
+ Version: 0.1.0
4
4
  Summary: Code->CPG chunker: tree-sitter symbol + relation extraction, size-capped chunks, ProximaRecord projection. Shared by Victor, ProximaDB SDK, and AnvaiOps.
5
5
  Author-email: Vijaykumar Singh <singhvjd@gmail.com>
6
6
  License: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "victor-codegraph"
7
- version = "0.0.1"
7
+ version = "0.1.0"
8
8
  description = "Code->CPG chunker: tree-sitter symbol + relation extraction, size-capped chunks, ProximaRecord projection. Shared by Victor, ProximaDB SDK, and AnvaiOps."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -26,7 +26,7 @@ from .model import (
26
26
  )
27
27
  from .parser import chunk, parse
28
28
 
29
- __version__ = "0.0.1"
29
+ __version__ = "0.1.0"
30
30
 
31
31
  __all__ = [
32
32
  "__version__",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: victor-codegraph
3
- Version: 0.0.1
3
+ Version: 0.1.0
4
4
  Summary: Code->CPG chunker: tree-sitter symbol + relation extraction, size-capped chunks, ProximaRecord projection. Shared by Victor, ProximaDB SDK, and AnvaiOps.
5
5
  Author-email: Vijaykumar Singh <singhvjd@gmail.com>
6
6
  License: Apache-2.0