graphhog 0.0.1__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,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: graphhog
3
+ Version: 0.0.1
4
+ Summary: Code analysis tool for agentic workflows. Coming soon.
5
+ Author-email: graphhog <hello@graphhog.dev>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://graphhog.dev
8
+ Project-URL: Repository, https://github.com/graphhog-org/graphhog
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/markdown
11
+
12
+ # graphhog
13
+
14
+ Code analysis tool for agentic workflows. Coming soon.
15
+
16
+ Visit [graphhog.dev](https://graphhog.dev) for more information.
@@ -0,0 +1,5 @@
1
+ # graphhog
2
+
3
+ Code analysis tool for agentic workflows. Coming soon.
4
+
5
+ Visit [graphhog.dev](https://graphhog.dev) for more information.
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "graphhog"
7
+ version = "0.0.1"
8
+ description = "Code analysis tool for agentic workflows. Coming soon."
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.10"
12
+ authors = [
13
+ { name = "graphhog", email = "hello@graphhog.dev" }
14
+ ]
15
+ urls.Homepage = "https://graphhog.dev"
16
+ urls.Repository = "https://github.com/graphhog-org/graphhog"
17
+
18
+ [project.scripts]
19
+ graphhog = "graphhog:main"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,7 @@
1
+ """graphhog - Code analysis tool for agentic workflows."""
2
+
3
+ __version__ = "0.0.1"
4
+
5
+
6
+ def main():
7
+ print("graphhog is not yet released. Visit https://graphhog.dev")
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: graphhog
3
+ Version: 0.0.1
4
+ Summary: Code analysis tool for agentic workflows. Coming soon.
5
+ Author-email: graphhog <hello@graphhog.dev>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://graphhog.dev
8
+ Project-URL: Repository, https://github.com/graphhog-org/graphhog
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/markdown
11
+
12
+ # graphhog
13
+
14
+ Code analysis tool for agentic workflows. Coming soon.
15
+
16
+ Visit [graphhog.dev](https://graphhog.dev) for more information.
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/graphhog/__init__.py
4
+ src/graphhog.egg-info/PKG-INFO
5
+ src/graphhog.egg-info/SOURCES.txt
6
+ src/graphhog.egg-info/dependency_links.txt
7
+ src/graphhog.egg-info/entry_points.txt
8
+ src/graphhog.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ graphhog = graphhog:main
@@ -0,0 +1 @@
1
+ graphhog