2018-06-27 02:56:33 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
2019-10-31 07:52:50 +00:00
|
|
|
with open("README.md", encoding="utf8") as f:
|
2018-06-27 02:56:33 +00:00
|
|
|
readme = f.read()
|
|
|
|
|
2019-10-31 07:52:50 +00:00
|
|
|
with open("aioitertools/__init__.py", encoding="utf8") as f:
|
2018-06-27 02:56:33 +00:00
|
|
|
for line in f:
|
|
|
|
if line.startswith("__version__"):
|
|
|
|
version = line.split('"')[1]
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="aioitertools",
|
|
|
|
description="asyncio version of the standard multiprocessing module",
|
|
|
|
long_description=readme,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
version=version,
|
|
|
|
author="John Reese",
|
|
|
|
author_email="john@noswap.com",
|
|
|
|
url="https://github.com/jreese/aioitertools",
|
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Framework :: AsyncIO",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Topic :: Software Development :: Libraries",
|
|
|
|
],
|
|
|
|
license="MIT",
|
|
|
|
packages=["aioitertools", "aioitertools.tests"],
|
2019-01-23 01:11:30 +00:00
|
|
|
package_data={"aioitertools": ["py.typed"]},
|
2019-10-20 00:26:05 +00:00
|
|
|
python_requires=">=3.6",
|
2018-06-27 02:56:33 +00:00
|
|
|
setup_requires=["setuptools>=38.6.0"],
|
|
|
|
install_requires=[],
|
|
|
|
)
|