bsif-utils 1.0.0__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,28 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2025, Blue Sky Infomation Factory
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ 3. Neither the name of the copyright holder nor the names of its
16
+ contributors may be used to endorse or promote products derived from
17
+ this software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: bsif-utils
3
+ Version: 1.0.0
4
+ Summary: Utils package.
5
+ Home-page: https://github.com/Blue-Sky-Infomation-Factory/Python-utils
6
+ Author: Blue Sky Infomation Factory
7
+ License: BSD 3-Clause License
8
+ Classifier: License :: OSI Approved :: BSD License
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Python: >=3.11
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Dynamic: author
14
+ Dynamic: classifier
15
+ Dynamic: description
16
+ Dynamic: description-content-type
17
+ Dynamic: home-page
18
+ Dynamic: license
19
+ Dynamic: license-file
20
+ Dynamic: requires-python
21
+ Dynamic: summary
22
+
23
+ # Python util
24
+ Python util class and method.
@@ -0,0 +1,2 @@
1
+ # Python util
2
+ Python util class and method.
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: bsif-utils
3
+ Version: 1.0.0
4
+ Summary: Utils package.
5
+ Home-page: https://github.com/Blue-Sky-Infomation-Factory/Python-utils
6
+ Author: Blue Sky Infomation Factory
7
+ License: BSD 3-Clause License
8
+ Classifier: License :: OSI Approved :: BSD License
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Python: >=3.11
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Dynamic: author
14
+ Dynamic: classifier
15
+ Dynamic: description
16
+ Dynamic: description-content-type
17
+ Dynamic: home-page
18
+ Dynamic: license
19
+ Dynamic: license-file
20
+ Dynamic: requires-python
21
+ Dynamic: summary
22
+
23
+ # Python util
24
+ Python util class and method.
@@ -0,0 +1,7 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ bsif_utils.egg-info/PKG-INFO
5
+ bsif_utils.egg-info/SOURCES.txt
6
+ bsif_utils.egg-info/dependency_links.txt
7
+ bsif_utils.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,24 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open('README.md', 'r') as file:
4
+ readme = file.read()
5
+
6
+ setup(
7
+ name="bsif-utils",
8
+ version="1.0.0",
9
+ author="Blue Sky Infomation Factory",
10
+ description="Utils package.",
11
+ long_description=readme,
12
+ long_description_content_type="text/markdown",
13
+ packages=find_packages(),
14
+ package_data={},
15
+ license="BSD 3-Clause License",
16
+ python_requires=">=3.11",
17
+ classifiers=[
18
+ "License :: OSI Approved :: BSD License",
19
+ "Programming Language :: Python :: 3"
20
+ ],
21
+ url="https://github.com/Blue-Sky-Infomation-Factory/Python-utils"
22
+ )
23
+
24
+ # python -m build -w