grai-build 0.3.0__tar.gz → 0.3.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.
Files changed (43) hide show
  1. {grai_build-0.3.0 → grai_build-0.3.2}/LICENSE +1 -1
  2. {grai_build-0.3.0 → grai_build-0.3.2}/PKG-INFO +3 -3
  3. {grai_build-0.3.0 → grai_build-0.3.2}/grai/__init__.py +1 -1
  4. {grai_build-0.3.0 → grai_build-0.3.2}/grai_build.egg-info/PKG-INFO +3 -3
  5. {grai_build-0.3.0 → grai_build-0.3.2}/pyproject.toml +3 -3
  6. {grai_build-0.3.0 → grai_build-0.3.2}/tests/test_cli.py +3 -1
  7. {grai_build-0.3.0 → grai_build-0.3.2}/README.md +0 -0
  8. {grai_build-0.3.0 → grai_build-0.3.2}/grai/cli/__init__.py +0 -0
  9. {grai_build-0.3.0 → grai_build-0.3.2}/grai/cli/main.py +0 -0
  10. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/__init__.py +0 -0
  11. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/cache/__init__.py +0 -0
  12. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/cache/build_cache.py +0 -0
  13. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/compiler/__init__.py +0 -0
  14. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/compiler/cypher_compiler.py +0 -0
  15. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/exporter/__init__.py +0 -0
  16. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/exporter/ir_exporter.py +0 -0
  17. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/lineage/__init__.py +0 -0
  18. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/lineage/lineage_tracker.py +0 -0
  19. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/loader/__init__.py +0 -0
  20. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/loader/neo4j_loader.py +0 -0
  21. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/models.py +0 -0
  22. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/parser/__init__.py +0 -0
  23. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/parser/yaml_parser.py +0 -0
  24. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/validator/__init__.py +0 -0
  25. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/validator/validator.py +0 -0
  26. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/visualizer/__init__.py +0 -0
  27. {grai_build-0.3.0 → grai_build-0.3.2}/grai/core/visualizer/visualizer.py +0 -0
  28. {grai_build-0.3.0 → grai_build-0.3.2}/grai/templates/__init__.py +0 -0
  29. {grai_build-0.3.0 → grai_build-0.3.2}/grai_build.egg-info/SOURCES.txt +0 -0
  30. {grai_build-0.3.0 → grai_build-0.3.2}/grai_build.egg-info/dependency_links.txt +0 -0
  31. {grai_build-0.3.0 → grai_build-0.3.2}/grai_build.egg-info/entry_points.txt +0 -0
  32. {grai_build-0.3.0 → grai_build-0.3.2}/grai_build.egg-info/requires.txt +0 -0
  33. {grai_build-0.3.0 → grai_build-0.3.2}/grai_build.egg-info/top_level.txt +0 -0
  34. {grai_build-0.3.0 → grai_build-0.3.2}/setup.cfg +0 -0
  35. {grai_build-0.3.0 → grai_build-0.3.2}/tests/test_cache.py +0 -0
  36. {grai_build-0.3.0 → grai_build-0.3.2}/tests/test_compiler.py +0 -0
  37. {grai_build-0.3.0 → grai_build-0.3.2}/tests/test_exporter.py +0 -0
  38. {grai_build-0.3.0 → grai_build-0.3.2}/tests/test_lineage.py +0 -0
  39. {grai_build-0.3.0 → grai_build-0.3.2}/tests/test_loader.py +0 -0
  40. {grai_build-0.3.0 → grai_build-0.3.2}/tests/test_models.py +0 -0
  41. {grai_build-0.3.0 → grai_build-0.3.2}/tests/test_parser.py +0 -0
  42. {grai_build-0.3.0 → grai_build-0.3.2}/tests/test_validator.py +0 -0
  43. {grai_build-0.3.0 → grai_build-0.3.2}/tests/test_visualizer.py +0 -0
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Andrew Santora
3
+ Copyright (c) 2025 grai.build
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: grai-build
3
- Version: 0.3.0
4
- Summary: Schema-as-code for graph databases - Documentation like dbt, migrations for Neo4j
5
- Author-email: Andrew Santora <andrew@grai.build>
3
+ Version: 0.3.2
4
+ Summary: Declarative knowledge graph modeling tool inspired by dbt
5
+ Author-email: "grai.build" <hello@grai.build>
6
6
  License: MIT
7
7
  Classifier: Development Status :: 3 - Alpha
8
8
  Classifier: Intended Audience :: Developers
@@ -8,4 +8,4 @@ try:
8
8
  __version__ = version("grai-build")
9
9
  except Exception:
10
10
  # Fallback for development or if package metadata is not available
11
- __version__ = "0.3.0"
11
+ __version__ = "0.3.2"
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: grai-build
3
- Version: 0.3.0
4
- Summary: Schema-as-code for graph databases - Documentation like dbt, migrations for Neo4j
5
- Author-email: Andrew Santora <andrew@grai.build>
3
+ Version: 0.3.2
4
+ Summary: Declarative knowledge graph modeling tool inspired by dbt
5
+ Author-email: "grai.build" <hello@grai.build>
6
6
  License: MIT
7
7
  Classifier: Development Status :: 3 - Alpha
8
8
  Classifier: Intended Audience :: Developers
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "grai-build"
7
- version = "0.3.0"
8
- description = "Schema-as-code for graph databases - Documentation like dbt, migrations for Neo4j"
7
+ version = "0.3.2"
8
+ description = "Declarative knowledge graph modeling tool inspired by dbt"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
11
11
  license = {text = "MIT"}
12
12
  authors = [
13
- {name = "Andrew Santora", email = "andrew@grai.build"}
13
+ {name = "grai.build", email = "hello@grai.build"}
14
14
  ]
15
15
  classifiers = [
16
16
  "Development Status :: 3 - Alpha",
@@ -25,7 +25,9 @@ class TestCLIBasics:
25
25
  """Test that --version works."""
26
26
  result = runner.invoke(app, ["--version"])
27
27
  assert result.exit_code == 0
28
- assert "0.3.0" in result.stdout
28
+ assert "grai.build version" in result.stdout
29
+ # Verify it contains a version number (e.g., 0.3.1)
30
+ assert any(char.isdigit() for char in result.stdout)
29
31
 
30
32
  def test_commands_registered(self):
31
33
  """Test that all commands are registered."""
File without changes
File without changes
File without changes