forked from gatoatigrado/vimap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 970 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 970 Bytes
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
from setuptools import find_packages
from setuptools import setup
setup(
name="vimap",
version="0.1.5",
provides=["vimap"],
author="gatoatigrado",
author_email="gatoatigrado@gmail.com",
url="https://github.com/gatoatigrado/vimap",
description='vimap',
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
],
install_requires=['testify'],
packages=find_packages(exclude=['tests*']),
long_description="""vimap -- variations on imap, not in C
The vimap package is designed to provide a more flexible alternative for
multiprocessing.imap_unordered. It aspires to support HTTP-like clients
processing data, though contains nothing client-specific.
"""
)