clawgraph 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,23 @@
1
+ # Build artifacts
2
+ dist/
3
+ build/
4
+ *.egg-info/
5
+ src/*.egg-info/
6
+
7
+ # Python
8
+ __pycache__/
9
+ *.py[cod]
10
+ *.so
11
+
12
+ # Virtual environments
13
+ .venv/
14
+ venv/
15
+ env/
16
+
17
+ # IDE
18
+ .vscode/
19
+ .idea/
20
+
21
+ # OS
22
+ .DS_Store
23
+ Thumbs.db
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Your Name
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,51 @@
1
+ Metadata-Version: 2.4
2
+ Name: clawgraph
3
+ Version: 0.0.1
4
+ Summary: A Python package for clawgraph.
5
+ Author-email: clawgraph <admin@clawgraph.ai>
6
+ License-Expression: MIT
7
+ License-File: LICENSE
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Requires-Python: >=3.9
18
+ Description-Content-Type: text/markdown
19
+
20
+ # clawgraph
21
+
22
+ A Python package for clawgraph.
23
+
24
+ ## Installation
25
+
26
+ ```bash
27
+ pip install clawgraph
28
+ ```
29
+
30
+ ## Usage
31
+
32
+ ```python
33
+ import clawgraph
34
+ ```
35
+
36
+ ## Development
37
+
38
+ ```bash
39
+ # Install in editable mode
40
+ pip install -e .
41
+
42
+ # Build the package
43
+ python -m build
44
+
45
+ # Upload to PyPI
46
+ python -m twine upload dist/*
47
+ ```
48
+
49
+ ## License
50
+
51
+ MIT
@@ -0,0 +1,32 @@
1
+ # clawgraph
2
+
3
+ A Python package for clawgraph.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install clawgraph
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ import clawgraph
15
+ ```
16
+
17
+ ## Development
18
+
19
+ ```bash
20
+ # Install in editable mode
21
+ pip install -e .
22
+
23
+ # Build the package
24
+ python -m build
25
+
26
+ # Upload to PyPI
27
+ python -m twine upload dist/*
28
+ ```
29
+
30
+ ## License
31
+
32
+ MIT
clawgraph-0.0.1/pypit ADDED
File without changes
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "clawgraph"
7
+ version = "0.0.1"
8
+ description = "A Python package for clawgraph."
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.9"
12
+ authors = [
13
+ { name = "clawgraph", email = "admin@clawgraph.ai" },
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 3 - Alpha",
17
+ "Intended Audience :: Developers",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.9",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Programming Language :: Python :: 3.13",
25
+ ]
26
+ dependencies = []
@@ -0,0 +1,3 @@
1
+ """clawgraph - A Python package."""
2
+
3
+ __version__ = "0.0.1"
File without changes