1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
from setuptools import setup
install_requires = []
tests_require = install_requires + ['pytest']
setup(
name="aiotask_context",
version="0.6.1",
author="Manuel Miranda",
author_email="manu.mirandad@gmail.com",
description="Store context information inside the asyncio.Task object",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
packages=['aiotask_context'],
install_requires=install_requires,
tests_require=tests_require,
)
|