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 +21 -0
- forkx-0.0.0/README.md +7 -0
- forkx-0.0.0/forkx/__init__.py +4 -0
- forkx-0.0.0/forkx/test.py +8 -0
- forkx-0.0.0/forkx.egg-info/PKG-INFO +21 -0
- forkx-0.0.0/forkx.egg-info/SOURCES.txt +9 -0
- forkx-0.0.0/forkx.egg-info/dependency_links.txt +1 -0
- forkx-0.0.0/forkx.egg-info/requires.txt +1 -0
- forkx-0.0.0/forkx.egg-info/top_level.txt +1 -0
- forkx-0.0.0/setup.cfg +4 -0
- forkx-0.0.0/setup.py +29 -0
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,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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ezpip
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
forkx
|
forkx-0.0.0/setup.cfg
ADDED
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
|
+
)
|