kstlib 0.0.1a0__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.
- kstlib-0.0.1a0/LICENSE.md +5 -0
- kstlib-0.0.1a0/PKG-INFO +29 -0
- kstlib-0.0.1a0/README.md +8 -0
- kstlib-0.0.1a0/pyproject.toml +27 -0
- kstlib-0.0.1a0/setup.cfg +4 -0
- kstlib-0.0.1a0/src/kstlib/__init__.py +1 -0
- kstlib-0.0.1a0/src/kstlib.egg-info/PKG-INFO +29 -0
- kstlib-0.0.1a0/src/kstlib.egg-info/SOURCES.txt +8 -0
- kstlib-0.0.1a0/src/kstlib.egg-info/dependency_links.txt +1 -0
- kstlib-0.0.1a0/src/kstlib.egg-info/top_level.txt +1 -0
kstlib-0.0.1a0/PKG-INFO
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: kstlib
|
|
3
|
+
Version: 0.0.1a0
|
|
4
|
+
Summary: Reserved name for future release of kstlib
|
|
5
|
+
Author-email: Michel TRUONG <michel.truong@gmail.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2025 Michel TRUONG
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy...
|
|
11
|
+
|
|
12
|
+
Keywords: kstlib,placeholder,reserved
|
|
13
|
+
Classifier: Development Status :: 1 - Planning
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE.md
|
|
20
|
+
Dynamic: license-file
|
|
21
|
+
|
|
22
|
+
# kstlib
|
|
23
|
+
|
|
24
|
+
⚠ **This is a placeholder release to reserve the project name on PyPI.**
|
|
25
|
+
|
|
26
|
+
The real project is under development and will be released soon.
|
|
27
|
+
Please do not install or use this version.
|
|
28
|
+
|
|
29
|
+
Stay tuned ✨
|
kstlib-0.0.1a0/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools >= 75.0.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "kstlib"
|
|
7
|
+
version = "0.0.1a0"
|
|
8
|
+
description = "Reserved name for future release of kstlib"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {file = "LICENSE.md"}
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "Michel TRUONG", email = "michel.truong@gmail.com"},
|
|
13
|
+
]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
]
|
|
21
|
+
keywords = ["kstlib", "placeholder", "reserved"]
|
|
22
|
+
|
|
23
|
+
[tool.setuptools]
|
|
24
|
+
package-dir = {"" = "src"}
|
|
25
|
+
|
|
26
|
+
[tool.setuptools.packages.find]
|
|
27
|
+
where = ["src"]
|
kstlib-0.0.1a0/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1a0"
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: kstlib
|
|
3
|
+
Version: 0.0.1a0
|
|
4
|
+
Summary: Reserved name for future release of kstlib
|
|
5
|
+
Author-email: Michel TRUONG <michel.truong@gmail.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2025 Michel TRUONG
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy...
|
|
11
|
+
|
|
12
|
+
Keywords: kstlib,placeholder,reserved
|
|
13
|
+
Classifier: Development Status :: 1 - Planning
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE.md
|
|
20
|
+
Dynamic: license-file
|
|
21
|
+
|
|
22
|
+
# kstlib
|
|
23
|
+
|
|
24
|
+
⚠ **This is a placeholder release to reserve the project name on PyPI.**
|
|
25
|
+
|
|
26
|
+
The real project is under development and will be released soon.
|
|
27
|
+
Please do not install or use this version.
|
|
28
|
+
|
|
29
|
+
Stay tuned ✨
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
kstlib
|