forked from CaliDog/asyncpool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.13 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
from setuptools import setup
from setuptools.command.test import test as TestCommand
import os
import sys
py_version = sys.version_info[:2]
if py_version < (3, 3):
raise Exception("AsyncPool requires Python >= 3.3.")
long_description = """
AsyncPool is a asyncio-based coroutine worker pool, intended to process through large amounts of jobs
efficiently and with explicit timeouts.
"""
setup(
name='asyncpool',
version='1.0',
url='http://github.com/calidog/asyncpool/',
author='Ryan Sears',
author_email='[email protected]',
description='Async coroutine worker pool',
long_description=long_description,
packages=['asyncpool'],
include_package_data=True,
license = "MIT",
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Testing",
"Environment :: Console",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)