collimate 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,10 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
@@ -0,0 +1 @@
1
+ 3.13
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: collimate
3
+ Version: 0.0.1
4
+ Summary: A local-first spatial workbench for LLMs
5
+ Requires-Python: >=3.9
6
+ Description-Content-Type: text/markdown
7
+
8
+ This is collimate
@@ -0,0 +1 @@
1
+ This is collimate
@@ -0,0 +1,14 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "collimate"
7
+ version = "0.0.1"
8
+ description = "A local-first spatial workbench for LLMs"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ dependencies = []
12
+
13
+ [project.scripts]
14
+ collimate = "collimate.cli:main"
File without changes
@@ -0,0 +1,6 @@
1
+ def main():
2
+ print("Hello from collimate!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
@@ -0,0 +1,8 @@
1
+ version = 1
2
+ revision = 3
3
+ requires-python = ">=3.9"
4
+
5
+ [[package]]
6
+ name = "collimate"
7
+ version = "0.0.1"
8
+ source = { editable = "." }