Skip to content

Commit

Permalink
setup.py packages modified
Browse files Browse the repository at this point in the history
  • Loading branch information
tanmay_majumdar committed Nov 3, 2019
1 parent f639a12 commit ab6cd77
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions MANIFEST
Expand Up @@ -2,3 +2,9 @@
setup.cfg
setup.py
pyexecutors\__init__.py
pyexecutors\executors\Executors.py
pyexecutors\executors\__init__.py
pyexecutors\holders\Tasks.py
pyexecutors\holders\__init__.py
pyexecutors\utils\BarrierHolder.py
pyexecutors\utils\thread_utils.py
6 changes: 3 additions & 3 deletions pyexecutors/__init__.py
Expand Up @@ -13,23 +13,23 @@


def executor():
return executors.Executors()
return Executors()


def async_tasks(f, args=None, kwargs=None):
if args is None:
args = []
if kwargs is None:
kwargs = {}
return holders.AsyncTasks(f, args, kwargs)
return AsyncTasks(f, args, kwargs)


def sync_tasks(f, args=None, kwargs=None):
if kwargs is None:
kwargs = {}
if args is None:
args = []
return holders.SyncTasks(f, args, kwargs)
return SyncTasks(f, args, kwargs)


__version__ = "0.0.3.dev"
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -2,8 +2,8 @@

setup(
name='pyexecutors',
packages=['pyexecutors'],
version='0.0.8',
packages=['pyexecutors', 'pyexecutors.executors', 'pyexecutors.holders', 'pyexecutors.utils'],
version='0.0.9',
license='MIT',
description=
"""
Expand All @@ -16,7 +16,7 @@
author='TANMAY MAJUMDAR',
author_email='tanmaymajumdar5612@gmail.com',
url='https://github.com/tanmay23235616/pyexecutors',
download_url='https://github.com/tanmay23235616/pyexecutors/archive/0.0.8.tar.gz',
download_url='https://github.com/tanmay23235616/pyexecutors/archive/0.0.9.tar.gz',
keywords=['PYEXECUTOR', 'TANMAY23235616', 'MULTITHREADING'],
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit ab6cd77

Please sign in to comment.