libcore-hng 2.0.7__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,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: libcore-hng
3
+ Version: 2.0.7
4
+ Summary: A core library for scalable Python applications
5
+ Author-email: kaioman <kajin0318@gmail.com>
6
+ Project-URL: Homepage, https://github.com/kaioman/libcore-hng
7
+ Project-URL: Repository, https://github.com/kaioman/libcore-hng
8
+ Project-URL: Issues, https://github.com/kaioman/libcore-hng/issues
9
+ Description-Content-Type: text/markdown
10
+
11
+ # libcore-hng
12
+
13
+ A lightweight Python core package designed to unify access to diverse AI APIs and libraries. It provides a consistent, scalable foundation for building modular applications with clarity and flexibility.
@@ -0,0 +1,3 @@
1
+ # libcore-hng
2
+
3
+ A lightweight Python core package designed to unify access to diverse AI APIs and libraries. It provides a consistent, scalable foundation for building modular applications with clarity and flexibility.
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "libcore-hng" # PyPIに登録されるパッケージ名
7
+ version = "2.0.7"
8
+ description = "A core library for scalable Python applications"
9
+ readme = "README.md" # 説明文としてREADMEを利用
10
+ license = {file = "LICENSE"} # ライセンスファイル
11
+ authors = [
12
+ { name="kaioman", email="kajin0318@gmail.com" }
13
+ ]
14
+ dependencies = [
15
+ ]
16
+
17
+ [tool.setuptools]
18
+ package-dir = { "" = "src" }
19
+
20
+ [tool.setuptools.packages.find]
21
+ where = ["src"]
22
+
23
+ [project.urls]
24
+ Homepage = "https://github.com/kaioman/libcore-hng"
25
+ Repository = "https://github.com/kaioman/libcore-hng"
26
+ Issues = "https://github.com/kaioman/libcore-hng/issues"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,7 @@
1
+
2
+ __copyright__ = 'Copyright (C) 2025 unchainworks'
3
+ __version__ = '0.1.0'
4
+ __license__ = 'BSD-3-Clause'
5
+ __author__ = 'unchainworks'
6
+ __author_email__ = 'kajin0318@gmail.com'
7
+ __url__ = 'https://github.com/kaioman/libcore-hng.git'
@@ -0,0 +1,3 @@
1
+
2
+ def test_function():
3
+ return "This is a test function from testmodule.py"
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: libcore-hng
3
+ Version: 2.0.7
4
+ Summary: A core library for scalable Python applications
5
+ Author-email: kaioman <kajin0318@gmail.com>
6
+ Project-URL: Homepage, https://github.com/kaioman/libcore-hng
7
+ Project-URL: Repository, https://github.com/kaioman/libcore-hng
8
+ Project-URL: Issues, https://github.com/kaioman/libcore-hng/issues
9
+ Description-Content-Type: text/markdown
10
+
11
+ # libcore-hng
12
+
13
+ A lightweight Python core package designed to unify access to diverse AI APIs and libraries. It provides a consistent, scalable foundation for building modular applications with clarity and flexibility.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/libcore_hng/__init__.py
4
+ src/libcore_hng/testmodule.py
5
+ src/libcore_hng.egg-info/PKG-INFO
6
+ src/libcore_hng.egg-info/SOURCES.txt
7
+ src/libcore_hng.egg-info/dependency_links.txt
8
+ src/libcore_hng.egg-info/top_level.txt
9
+ tests/test-001.py
@@ -0,0 +1 @@
1
+ libcore_hng
@@ -0,0 +1,3 @@
1
+ from libcore_hng.testmodule import test_function
2
+
3
+ print(test_function())