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.
- libcore_hng-2.0.7/PKG-INFO +13 -0
- libcore_hng-2.0.7/README.md +3 -0
- libcore_hng-2.0.7/pyproject.toml +26 -0
- libcore_hng-2.0.7/setup.cfg +4 -0
- libcore_hng-2.0.7/src/libcore_hng/__init__.py +7 -0
- libcore_hng-2.0.7/src/libcore_hng/testmodule.py +3 -0
- libcore_hng-2.0.7/src/libcore_hng.egg-info/PKG-INFO +13 -0
- libcore_hng-2.0.7/src/libcore_hng.egg-info/SOURCES.txt +9 -0
- libcore_hng-2.0.7/src/libcore_hng.egg-info/dependency_links.txt +1 -0
- libcore_hng-2.0.7/src/libcore_hng.egg-info/top_level.txt +1 -0
- libcore_hng-2.0.7/tests/test-001.py +3 -0
|
@@ -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,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,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
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
libcore_hng
|