open-dataflow 0.0.1__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.
- open_dataflow-0.0.1/PKG-INFO +28 -0
- open_dataflow-0.0.1/README.md +2 -0
- open_dataflow-0.0.1/open_dataflow/__init__.py +9 -0
- open_dataflow-0.0.1/open_dataflow/version.py +23 -0
- open_dataflow-0.0.1/open_dataflow.egg-info/PKG-INFO +28 -0
- open_dataflow-0.0.1/open_dataflow.egg-info/SOURCES.txt +10 -0
- open_dataflow-0.0.1/open_dataflow.egg-info/dependency_links.txt +1 -0
- open_dataflow-0.0.1/open_dataflow.egg-info/requires.txt +1 -0
- open_dataflow-0.0.1/open_dataflow.egg-info/top_level.txt +1 -0
- open_dataflow-0.0.1/pyproject.toml +51 -0
- open_dataflow-0.0.1/requirements.txt +1 -0
- open_dataflow-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: open-dataflow
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for open-dataflow.
|
|
5
|
+
Author-email: Hao Liang <hao.liang@stu.pku.edu.cn>, Xiaochen Ma <xiaochen.ma.cs@gmail.com>
|
|
6
|
+
License: CC-BY-4.0
|
|
7
|
+
Project-URL: Github, https://github.com/Open-DataFlow/DataFlow
|
|
8
|
+
Project-URL: Documentation, https://open-dataflow.github.io/DataFlow-Doc/
|
|
9
|
+
Project-URL: Bug Reports, https://github.com/Open-DataFlow/DataFlow/issues
|
|
10
|
+
Keywords: AI,artificial intelligence
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: Topic :: Security
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
16
|
+
Classifier: License :: Free For Educational Use
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
23
|
+
Requires-Python: <4,>=3.7
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
Requires-Dist: numpy
|
|
26
|
+
|
|
27
|
+
# Open-Dataflow
|
|
28
|
+
This is a placeholder for the open-dataflow namespace on PyPI. For details, please visit [https://github.com/Open-DataFlow/DataFlow](https://github.com/Open-DataFlow/DataFlow)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
__version__ = '0.0.1'
|
|
2
|
+
short_version = __version__
|
|
3
|
+
|
|
4
|
+
def parse_version_info(version_str):
|
|
5
|
+
"""Parse a version string into a tuple.
|
|
6
|
+
|
|
7
|
+
Args:
|
|
8
|
+
version_str (str): The version string.
|
|
9
|
+
Returns:
|
|
10
|
+
tuple[int | str]: The version info, e.g., "1.3.0" is parsed into
|
|
11
|
+
(1, 3, 0), and "2.0.0rc1" is parsed into (2, 0, 0, 'rc1').
|
|
12
|
+
"""
|
|
13
|
+
version_info = []
|
|
14
|
+
for x in version_str.split('.'):
|
|
15
|
+
if x.isdigit():
|
|
16
|
+
version_info.append(int(x))
|
|
17
|
+
elif x.find('rc') != -1:
|
|
18
|
+
patch_version = x.split('rc')
|
|
19
|
+
version_info.append(int(patch_version[0]))
|
|
20
|
+
version_info.append(f'rc{patch_version[1]}')
|
|
21
|
+
return tuple(version_info)
|
|
22
|
+
|
|
23
|
+
version_info = parse_version_info(__version__)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: open-dataflow
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for open-dataflow.
|
|
5
|
+
Author-email: Hao Liang <hao.liang@stu.pku.edu.cn>, Xiaochen Ma <xiaochen.ma.cs@gmail.com>
|
|
6
|
+
License: CC-BY-4.0
|
|
7
|
+
Project-URL: Github, https://github.com/Open-DataFlow/DataFlow
|
|
8
|
+
Project-URL: Documentation, https://open-dataflow.github.io/DataFlow-Doc/
|
|
9
|
+
Project-URL: Bug Reports, https://github.com/Open-DataFlow/DataFlow/issues
|
|
10
|
+
Keywords: AI,artificial intelligence
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: Topic :: Security
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
16
|
+
Classifier: License :: Free For Educational Use
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
23
|
+
Requires-Python: <4,>=3.7
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
Requires-Dist: numpy
|
|
26
|
+
|
|
27
|
+
# Open-Dataflow
|
|
28
|
+
This is a placeholder for the open-dataflow namespace on PyPI. For details, please visit [https://github.com/Open-DataFlow/DataFlow](https://github.com/Open-DataFlow/DataFlow)
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
requirements.txt
|
|
4
|
+
open_dataflow/__init__.py
|
|
5
|
+
open_dataflow/version.py
|
|
6
|
+
open_dataflow.egg-info/PKG-INFO
|
|
7
|
+
open_dataflow.egg-info/SOURCES.txt
|
|
8
|
+
open_dataflow.egg-info/dependency_links.txt
|
|
9
|
+
open_dataflow.egg-info/requires.txt
|
|
10
|
+
open_dataflow.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
numpy
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
open_dataflow
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=42", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
[project]
|
|
7
|
+
name = "open-dataflow"
|
|
8
|
+
authors = [
|
|
9
|
+
{name = "Hao Liang", email = "hao.liang@stu.pku.edu.cn"},
|
|
10
|
+
{name = "Xiaochen Ma", email = "xiaochen.ma.cs@gmail.com"},
|
|
11
|
+
]
|
|
12
|
+
description = "Placeholder for open-dataflow."
|
|
13
|
+
readme = {file = "README.md", content-type = "text/markdown"}
|
|
14
|
+
requires-python = ">=3.7, <4"
|
|
15
|
+
license = {text = "CC-BY-4.0"}
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 3 - Alpha",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Intended Audience :: Science/Research",
|
|
20
|
+
"Topic :: Security",
|
|
21
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
22
|
+
"License :: Free For Educational Use",
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"Programming Language :: Python :: 3.7",
|
|
25
|
+
"Programming Language :: Python :: 3.8",
|
|
26
|
+
"Programming Language :: Python :: 3.9",
|
|
27
|
+
"Programming Language :: Python :: 3.10",
|
|
28
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
29
|
+
]
|
|
30
|
+
keywords = [
|
|
31
|
+
"AI",
|
|
32
|
+
"artificial intelligence",
|
|
33
|
+
]
|
|
34
|
+
dynamic = ["version", "dependencies"]
|
|
35
|
+
|
|
36
|
+
[project.urls]
|
|
37
|
+
Github = "https://github.com/Open-DataFlow/DataFlow"
|
|
38
|
+
Documentation = "https://open-dataflow.github.io/DataFlow-Doc/"
|
|
39
|
+
"Bug Reports" = "https://github.com/Open-DataFlow/DataFlow/issues"
|
|
40
|
+
|
|
41
|
+
# [project.entry-points."console_scripts"]
|
|
42
|
+
# benco = "IMDLBenCo.cli:main"
|
|
43
|
+
|
|
44
|
+
[tool.setuptools]
|
|
45
|
+
include-package-data = true
|
|
46
|
+
packages = ["open_dataflow"] # 显式指定主包
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
[tool.setuptools.dynamic]
|
|
50
|
+
version = {attr = "open_dataflow.version.__version__"}
|
|
51
|
+
dependencies = {file = "requirements.txt"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
numpy
|