Skip to content

Commit e7c6892

Browse files
committed
Added setup_task_grouping.py
1 parent 09cbe32 commit e7c6892

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

Utilities.PyPI/Utilities.PyPI.pyproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@
4343
<Compile Include="dbdatareader.py" />
4444
<Compile Include="setup_simple_rest_call.py" />
4545
<Compile Include="setup_dbdatareader.py" />
46+
<Compile Include="setup_task_grouping.py">
47+
<SubType>Code</SubType>
48+
</Compile>
4649
<Compile Include="simple_rest_call.py" />
4750
<Compile Include="task_grouping.py">
4851
<SubType>Code</SubType>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# -*- coding: utf-8 -*-
2+
from setuptools import setup
3+
4+
import task_grouping
5+
6+
setup(name='task-grouping',
7+
version=task_grouping.__version__,
8+
description='Task Grouping',
9+
long_description=task_grouping.__doc__,
10+
keywords=("grouping", "tasks", "parallel", "serial", "pipeline", "arguments", "container", "loader", "JSON", "tree"),
11+
author='Abel Cheng',
12+
author_email='[email protected]',
13+
url='https://github.com/DataBooster/PyWebApi',
14+
license='MIT',
15+
platforms='any',
16+
py_modules=['task_grouping'],
17+
python_requires='>=3.5')

Utilities.PyPI/task_grouping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def create_group_task(self, task_group:List[TaskContainer], parallel:bool=False)
239239
240240
:param task_group: A list of subtasks, each subtask is presented as a ``TaskContainer``.
241241
242-
:param parallel: A Boolean value indicates that its first-level subtasks should be executed in parallel (True value) or serial (False value).
242+
:param parallel: A Boolean value indicates that its first-level subtasks should be executed in parallel (``True`` value) or serial (``False`` value).
243243
:return: An instance of ``TaskContainer``
244244
"""
245245
if not task_group:

0 commit comments

Comments
 (0)