forkx 0.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.
forkx-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.1
2
+ Name: forkx
3
+ Version: 0.0.0
4
+ Summary: Ultra-simple parallel processing
5
+ Home-page: https://github.co.jp/
6
+ Author: bib_inf
7
+ Author-email: contact.bibinf@gmail.com
8
+ License: CC0 v1.0
9
+ Description: English description follows Japanese.
10
+
11
+ ---
12
+
13
+ ## About
14
+ - Ultra-simple parallel processing
15
+ - explanation under construction (説明は執筆中です)
16
+
17
+ Platform: UNKNOWN
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Topic :: Software Development :: Libraries
20
+ Classifier: License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
21
+ Description-Content-Type: text/markdown
forkx-0.0.0/README.md ADDED
@@ -0,0 +1,7 @@
1
+ English description follows Japanese.
2
+
3
+ ---
4
+
5
+ ## About
6
+ - Ultra-simple parallel processing
7
+ - explanation under construction (説明は執筆中です)
@@ -0,0 +1,4 @@
1
+
2
+
3
+ def xxx():
4
+ return yyy
@@ -0,0 +1,8 @@
1
+ # 超簡単な並列処理 [forkx]
2
+ # 【動作確認 / 使用例】
3
+
4
+ import sys
5
+ import ezpip
6
+ sndwch = ezpip.load_develop("sndwch", "../", develop_flag = True)
7
+
8
+ # under construction
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.1
2
+ Name: forkx
3
+ Version: 0.0.0
4
+ Summary: Ultra-simple parallel processing
5
+ Home-page: https://github.co.jp/
6
+ Author: bib_inf
7
+ Author-email: contact.bibinf@gmail.com
8
+ License: CC0 v1.0
9
+ Description: English description follows Japanese.
10
+
11
+ ---
12
+
13
+ ## About
14
+ - Ultra-simple parallel processing
15
+ - explanation under construction (説明は執筆中です)
16
+
17
+ Platform: UNKNOWN
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Topic :: Software Development :: Libraries
20
+ Classifier: License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
21
+ Description-Content-Type: text/markdown
@@ -0,0 +1,9 @@
1
+ README.md
2
+ setup.py
3
+ forkx/__init__.py
4
+ forkx/test.py
5
+ forkx.egg-info/PKG-INFO
6
+ forkx.egg-info/SOURCES.txt
7
+ forkx.egg-info/dependency_links.txt
8
+ forkx.egg-info/requires.txt
9
+ forkx.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ ezpip
@@ -0,0 +1 @@
1
+ forkx
forkx-0.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
forkx-0.0.0/setup.py ADDED
@@ -0,0 +1,29 @@
1
+
2
+ from setuptools import setup
3
+ # 公開用パッケージの作成 [ezpip]
4
+ import ezpip
5
+
6
+ # 公開用パッケージの作成 [ezpip]
7
+ with ezpip.packager(develop_dir = "./_develop_forkx/") as p:
8
+ setup(
9
+ name = "forkx",
10
+ version = "0.0.0",
11
+ description = 'Ultra-simple parallel processing',
12
+ author = "bib_inf",
13
+ author_email = "contact.bibinf@gmail.com",
14
+ url = "https://github.co.jp/",
15
+ packages = p.packages,
16
+ install_requires = ["ezpip"],
17
+ long_description = p.long_description,
18
+ long_description_content_type = "text/markdown",
19
+ license = "CC0 v1.0",
20
+ classifiers = [
21
+ "Programming Language :: Python :: 3",
22
+ "Topic :: Software Development :: Libraries",
23
+ "License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication"
24
+ ],
25
+ # entry_points = """
26
+ # [console_scripts]
27
+ # py6 = py6:console_command
28
+ # """
29
+ )