-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.29 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
from setuptools import setup
setup(
name="bounded-iterator",
version="1.0.2",
description="Limits the number of values generated by an iterator until acknowledged.",
long_description=open("README.rst", "rt", encoding="utf-8").read(),
url="https://github.com/jruere/bounded-iterator",
license="LGPLv3",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="concurrency parallelism iterator iterable multiprocessing imap",
author="Javier Ruere",
author_email="[email protected]",
zip_safe=True,
py_modules=["bounded_iterator"],
test_suite="test_bounded_iterator.py",
tests_require=[],
)