forked from shazow/workerpool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (39 loc) · 1.46 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/python
from setuptools import setup, find_packages
version = '0.9.2'
setup(name='workerpool',
version=version,
description="Module for distributing jobs to a pool of worker threads.",
long_description="""\
Performing tasks in many threads made fun!
This module facilitates distributing simple operations into jobs that are sent
to worker threads, maintained by a pool object.
It consists of these components:
1. Jobs, which are single units of work that need to be performed.
2. Workers, who grab jobs from a queue and perform them.
3. Worker pool, which keeps track of workers and the job queue.
""",
# Strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
keywords='pooling threading jobs',
author='Andrey Petrov',
author_email='[email protected]',
url='http://code.google.com/p/workerpool/',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
test_suite='nose.collector'
)