Skip to content

Commit

Permalink
descr
Browse files Browse the repository at this point in the history
  • Loading branch information
divi255 committed Jul 14, 2019
1 parent a23dc2c commit c4ff419
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# atasker
Python library for modern thread polling and task processing using asyncio
Python library for modern thread pooling and task processing using asyncio.

## Install

Expand Down
2 changes: 1 addition & 1 deletion atasker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__author__ = "Altertech Group, http://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.1.0"
__version__ = "0.1.1"

from atasker.supervisor import TaskSupervisor
from atasker.supervisor import TASK_LOW
Expand Down
2 changes: 1 addition & 1 deletion atasker/f.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__author__ = "Altertech Group, http://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.1.0"
__version__ = "0.1.1"

import traceback
import threading
Expand Down
2 changes: 1 addition & 1 deletion atasker/supervisor.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__author__ = "Altertech Group, http://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.1.0"
__version__ = "0.1.1"

import threading
import time
Expand Down
2 changes: 1 addition & 1 deletion atasker/threads.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__author__ = "Altertech Group, http://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.1.0"
__version__ = "0.1.1"

import threading
import time
Expand Down
2 changes: 1 addition & 1 deletion atasker/workers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__author__ = "Altertech Group, http://www.altertech.com/"
__copyright__ = "Copyright (C) 2018-2019 Altertech Group"
__license__ = "Apache License 2.0"
__version__ = "0.1.0"
__version__ = "0.1.1"

import threading
import logging
Expand Down
4 changes: 2 additions & 2 deletions doc/readme.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
atasker
=======

Python library for modern thread polling and task processing using
asyncio
Python library for modern thread pooling and task processing using
asyncio.

Install
-------
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.0"
__version__ = "0.1.1"

import setuptools

Expand All @@ -10,7 +10,8 @@
version=__version__,
author='Altertech Group',
author_email='div@altertech.com',
description='Thread pools, async workers etc.',
description=
'Python library for modern thread polling and ask processing using asyncio',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/alttch/atasker',
Expand Down

0 comments on commit c4ff419

Please sign in to comment.