toolpack 0.0.2__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,7 @@
1
+ # Change Log
2
+ ## [0.0.0] - 2023-11-28
3
+ ### Init
4
+
5
+ ## [0.0.2] - 2023-12-01
6
+ ### Add
7
+ - parallel.parallel_launcher() for multi-processing
toolpack-0.0.2/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 mago-deshi
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,3 @@
1
+ include LICENSE
2
+ include *.md
3
+ include requirements.txt
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.1
2
+ Name: toolpack
3
+ Version: 0.0.2
4
+ Summary: toolpack for python development tools package
5
+ Home-page: https://github.com/MTamon/DevLib.git
6
+ Author: Tamon Mikawa
7
+ Author-email: mtamon.engineering@gmail.com
8
+ License: MIT License
9
+ Keywords: devlopment,tools,parallel
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+
19
+ # dev-lib for python development tools package
20
+ ## Installation
21
+ ```bash
22
+ pip install dev-lib
23
+ ```
24
+
25
+ ## Dependencies
26
+ - joblib
27
+ - tqdm
@@ -0,0 +1,9 @@
1
+ # dev-lib for python development tools package
2
+ ## Installation
3
+ ```bash
4
+ pip install dev-lib
5
+ ```
6
+
7
+ ## Dependencies
8
+ - joblib
9
+ - tqdm
@@ -0,0 +1,2 @@
1
+ joblib==1.3.2
2
+ tqdm==4.64.1
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,66 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ from os import path
4
+ from setuptools import setup
5
+
6
+ from toolpack import VERSION, LICENCE, AUTHOR, EMAIL, GIT_URL
7
+
8
+ NAME = "toolpack"
9
+ PACKAGES = ["toolpack"]
10
+ DESCRIPTION = "toolpack for python development tools package"
11
+ KEYWORDS = "devlopment, tools, parallel"
12
+
13
+ root_dir = path.abspath(path.dirname(__file__))
14
+
15
+
16
+ def _requirements():
17
+ return [
18
+ name.rstrip()
19
+ for name in open(
20
+ path.join(root_dir, "requirements.txt"), encoding="utf-8"
21
+ ).readlines()
22
+ ]
23
+
24
+
25
+ def _test_requirements():
26
+ return [
27
+ name.rstrip()
28
+ for name in open(
29
+ path.join(root_dir, "test-requirements.txt"), encoding="utf-8"
30
+ ).readlines()
31
+ ]
32
+
33
+
34
+ assert VERSION
35
+ assert LICENCE
36
+ assert AUTHOR
37
+ assert EMAIL
38
+ assert GIT_URL
39
+
40
+ with open("README.md", encoding="utf-8") as f:
41
+ long_description = f.read()
42
+
43
+
44
+ setup(
45
+ name=NAME,
46
+ packages=PACKAGES,
47
+ version=VERSION,
48
+ license=LICENCE,
49
+ install_requires=_requirements(),
50
+ tests_require=_test_requirements(),
51
+ author=AUTHOR,
52
+ author_email=EMAIL,
53
+ url=GIT_URL,
54
+ description=DESCRIPTION,
55
+ long_description=long_description,
56
+ long_description_content_type="text/markdown",
57
+ keywords=KEYWORDS,
58
+ classifiers=[
59
+ "Development Status :: 4 - Beta",
60
+ "License :: OSI Approved :: MIT License",
61
+ "Programming Language :: Python",
62
+ "Programming Language :: Python :: 3",
63
+ "Programming Language :: Python :: 3.9",
64
+ "Topic :: Software Development :: Libraries :: Python Modules",
65
+ ],
66
+ )
@@ -0,0 +1,21 @@
1
+ """Initialize published package."""
2
+
3
+ from toolpack import parallel
4
+
5
+ ############## EDIT THESE INFORMATION ###############
6
+ AUTHOR = "Tamon Mikawa"
7
+ EMAIL = "mtamon.engineering@gmail.com"
8
+ YEAR = "2023"
9
+ GIT_URL = "https://github.com/MTamon/DevLib.git"
10
+ VERSION = "0.0.2"
11
+ LICENCE = "MIT License"
12
+ #####################################################
13
+
14
+ __copyright__ = f"Copyright (C) {YEAR} {AUTHOR}"
15
+ __version__ = VERSION
16
+ __license__ = LICENCE
17
+ __author__ = AUTHOR
18
+ __author_email__ = EMAIL
19
+ __url__ = GIT_URL
20
+
21
+ __all__ = ["parallel"]
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.1
2
+ Name: toolpack
3
+ Version: 0.0.2
4
+ Summary: toolpack for python development tools package
5
+ Home-page: https://github.com/MTamon/DevLib.git
6
+ Author: Tamon Mikawa
7
+ Author-email: mtamon.engineering@gmail.com
8
+ License: MIT License
9
+ Keywords: devlopment,tools,parallel
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+
19
+ # dev-lib for python development tools package
20
+ ## Installation
21
+ ```bash
22
+ pip install dev-lib
23
+ ```
24
+
25
+ ## Dependencies
26
+ - joblib
27
+ - tqdm
@@ -0,0 +1,12 @@
1
+ CHANGELOG.md
2
+ LICENSE
3
+ MANIFEST.in
4
+ README.md
5
+ requirements.txt
6
+ setup.py
7
+ toolpack/__init__.py
8
+ toolpack.egg-info/PKG-INFO
9
+ toolpack.egg-info/SOURCES.txt
10
+ toolpack.egg-info/dependency_links.txt
11
+ toolpack.egg-info/requires.txt
12
+ toolpack.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ joblib==1.3.2
2
+ tqdm==4.64.1
@@ -0,0 +1 @@
1
+ toolpack