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
|
#!/usr/bin/env python
# -*- coding:utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='aiounittest',
packages=['aiounittest'],
version='1.4.2',
author='Krzysztof Warunek',
author_email='krzysztof@warunek.net',
description='Test asyncio code more easily.',
include_package_data=True,
keywords='asyncio, async, unittest, coroutine',
url='https://github.com/kwarunek/aiounittest',
long_description=open('README.rst').read(),
tests_require=['nose', 'coverage'],
package_data={'aiounittest': ['py.typed']},
install_requires=['wrapt'],
license="MIT",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'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',
]
)
|