agentskillforge-infrastructure-library 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,30 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ pull_request:
6
+
7
+ jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ python-version: ["3.11", "3.12", "3.13"]
13
+
14
+ steps:
15
+ - name: Check out repository
16
+ uses: actions/checkout@v4
17
+
18
+ - name: Set up Python
19
+ uses: actions/setup-python@v5
20
+ with:
21
+ python-version: ${{ matrix.python-version }}
22
+
23
+ - name: Set up uv
24
+ uses: astral-sh/setup-uv@v5
25
+
26
+ - name: Run tests
27
+ run: uv run --with pytest pytest
28
+
29
+ - name: Build package
30
+ run: uv build
@@ -0,0 +1,34 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ permissions:
8
+ contents: read
9
+ id-token: write
10
+
11
+ jobs:
12
+ publish:
13
+ runs-on: ubuntu-latest
14
+ environment:
15
+ name: pypi
16
+ url: https://pypi.org/p/agentskillforge-infrastructure-library
17
+
18
+ steps:
19
+ - name: Check out repository
20
+ uses: actions/checkout@v4
21
+
22
+ - name: Set up Python
23
+ uses: actions/setup-python@v5
24
+ with:
25
+ python-version: "3.13"
26
+
27
+ - name: Set up uv
28
+ uses: astral-sh/setup-uv@v5
29
+
30
+ - name: Build package
31
+ run: uv build
32
+
33
+ - name: Publish package to PyPI
34
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,8 @@
1
+ __pycache__/
2
+ *.py[cod]
3
+ .pytest_cache/
4
+ .ruff_cache/
5
+ .venv/
6
+ dist/
7
+ build/
8
+ *.egg-info/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Agent Skill Forge
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,66 @@
1
+ Metadata-Version: 2.5
2
+ Name: agentskillforge-infrastructure-library
3
+ Version: 0.0.1
4
+ Summary: Shared infrastructure library for the Agent Skill Forge platform.
5
+ Project-URL: Homepage, https://github.com/metcarob-stack/agentskillforge_infrastructure_library
6
+ Project-URL: Repository, https://github.com/metcarob-stack/agentskillforge_infrastructure_library
7
+ Author: Agent Skill Forge
8
+ License: MIT License
9
+
10
+ Copyright (c) 2026 Agent Skill Forge
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in all
20
+ copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ SOFTWARE.
29
+ License-File: LICENSE
30
+ Classifier: Development Status :: 3 - Alpha
31
+ Classifier: Intended Audience :: Developers
32
+ Classifier: License :: OSI Approved :: MIT License
33
+ Classifier: Programming Language :: Python :: 3
34
+ Classifier: Programming Language :: Python :: 3 :: Only
35
+ Classifier: Programming Language :: Python :: 3.11
36
+ Classifier: Programming Language :: Python :: 3.12
37
+ Classifier: Programming Language :: Python :: 3.13
38
+ Requires-Python: >=3.11
39
+ Description-Content-Type: text/markdown
40
+
41
+ # Agent Skill Forge Infrastructure Library
42
+
43
+ The shared Python infrastructure library for Agent Skill Forge projects.
44
+
45
+ This initial `0.0.1` release intentionally contains only a small demonstration function:
46
+
47
+ ```python
48
+ from agentskillforge_infrastructure_library import hello_world
49
+
50
+ print(hello_world())
51
+ # Hello, world!
52
+ ```
53
+
54
+ ## Development
55
+
56
+ Run the tests with:
57
+
58
+ ```bash
59
+ uv run --with pytest pytest
60
+ ```
61
+
62
+ Build the distribution with:
63
+
64
+ ```bash
65
+ uv build
66
+ ```
@@ -0,0 +1,26 @@
1
+ # Agent Skill Forge Infrastructure Library
2
+
3
+ The shared Python infrastructure library for Agent Skill Forge projects.
4
+
5
+ This initial `0.0.1` release intentionally contains only a small demonstration function:
6
+
7
+ ```python
8
+ from agentskillforge_infrastructure_library import hello_world
9
+
10
+ print(hello_world())
11
+ # Hello, world!
12
+ ```
13
+
14
+ ## Development
15
+
16
+ Run the tests with:
17
+
18
+ ```bash
19
+ uv run --with pytest pytest
20
+ ```
21
+
22
+ Build the distribution with:
23
+
24
+ ```bash
25
+ uv build
26
+ ```
@@ -0,0 +1,40 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.27"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "agentskillforge-infrastructure-library"
7
+ version = "0.0.1"
8
+ description = "Shared infrastructure library for the Agent Skill Forge platform."
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = { file = "LICENSE" }
12
+ authors = [
13
+ { name = "Agent Skill Forge" }
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 :: Only",
21
+ "Programming Language :: Python :: 3.11",
22
+ "Programming Language :: Python :: 3.12",
23
+ "Programming Language :: Python :: 3.13",
24
+ ]
25
+
26
+ [project.urls]
27
+ Homepage = "https://github.com/metcarob-stack/agentskillforge_infrastructure_library"
28
+ Repository = "https://github.com/metcarob-stack/agentskillforge_infrastructure_library"
29
+
30
+ [tool.hatch.build.targets.wheel]
31
+ packages = ["src/agentskillforge_infrastructure_library"]
32
+
33
+ [tool.pytest.ini_options]
34
+ testpaths = ["tests"]
35
+
36
+ [tool.ruff]
37
+ line-length = 88
38
+
39
+ [tool.ruff.lint]
40
+ select = ["E", "F", "I"]
@@ -0,0 +1,8 @@
1
+ """Shared infrastructure library for Agent Skill Forge."""
2
+
3
+ __version__ = "0.0.1"
4
+
5
+
6
+ def hello_world() -> str:
7
+ """Return the library's initial greeting."""
8
+ return "Hello, world!"
@@ -0,0 +1,9 @@
1
+ from agentskillforge_infrastructure_library import __version__, hello_world
2
+
3
+
4
+ def test_version():
5
+ assert __version__ == "0.0.1"
6
+
7
+
8
+ def test_hello_world():
9
+ assert hello_world() == "Hello, world!"
@@ -0,0 +1,8 @@
1
+ version = 1
2
+ revision = 3
3
+ requires-python = ">=3.11"
4
+
5
+ [[package]]
6
+ name = "agentskillforge-infrastructure-library"
7
+ version = "0.0.1"
8
+ source = { editable = "." }