clsforge 0.1.0rc1__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
+ Metadata-Version: 2.3
2
+ Name: clsforge
3
+ Version: 0.1.0rc1
4
+ Summary:
5
+ Author: oyghen
6
+ Author-email: oyghen <oyghen@duck.com>
7
+ Requires-Python: >=3.11
8
+ Description-Content-Type: text/markdown
9
+
10
+ <div align="center">
11
+
12
+ # clsforge
13
+
14
+ [![GitHub](https://img.shields.io/badge/github-code-blue?label=GitHub)](https://github.com/oyghen/clsforge)
15
+ [![PyPI](https://img.shields.io/pypi/v/clsforge?label=PyPI)](https://pypi.org/project/clsforge)
16
+ [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://github.com/oyghen/clsforge/blob/main/LICENSE)
17
+ [![CI](https://github.com/oyghen/clsforge/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/oyghen/clsforge/actions/workflows/ci.yml)
18
+
19
+ </div>
20
+
21
+ ```shell
22
+ pip install clsforge
23
+ ```
@@ -0,0 +1,14 @@
1
+ <div align="center">
2
+
3
+ # clsforge
4
+
5
+ [![GitHub](https://img.shields.io/badge/github-code-blue?label=GitHub)](https://github.com/oyghen/clsforge)
6
+ [![PyPI](https://img.shields.io/pypi/v/clsforge?label=PyPI)](https://pypi.org/project/clsforge)
7
+ [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://github.com/oyghen/clsforge/blob/main/LICENSE)
8
+ [![CI](https://github.com/oyghen/clsforge/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/oyghen/clsforge/actions/workflows/ci.yml)
9
+
10
+ </div>
11
+
12
+ ```shell
13
+ pip install clsforge
14
+ ```
@@ -0,0 +1,21 @@
1
+ [project]
2
+ name = "clsforge"
3
+ version = "0.1.0rc1"
4
+ description = ""
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "oyghen", email = "oyghen@duck.com" }
8
+ ]
9
+ requires-python = ">=3.11"
10
+ dependencies = []
11
+
12
+ [build-system]
13
+ requires = ["uv_build>=0.11.9,<0.12.0"]
14
+ build-backend = "uv_build"
15
+
16
+ [dependency-groups]
17
+ dev = [
18
+ "pre-commit>=4.6.0",
19
+ "pytest>=9.0.3",
20
+ "ruff>=0.15.12",
21
+ ]
@@ -0,0 +1,5 @@
1
+ __all__ = ["__version__"]
2
+
3
+ from importlib import metadata
4
+
5
+ __version__ = metadata.version(__name__)
File without changes