-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 668 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(
name='PriorityThreadPoolExecutor',
version='0.0.1',
packages=['PriorityThreadPoolExecutor'],
requires=[],
url='https://github.com/oleglpts/PriorityThreadPoolExecutor',
license='MIT',
platforms='any',
author='Oleg Lupats',
author_email='oleglupats@gmail.com',
description='Thread pool executor with priority queue',
long_description='Thread pool executor with priority queue: '
'little hack of ThreadPoolExecutor from concurrent.futures.thread',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5'
]
)