asyncio-seppuku/setup.py
2018-02-16 20:22:35 +03:00

21 lines
674 B
Python

from distutils.core import setup
setup(
name='asyncio-seppuku',
packages=['seppuku'],
version='0.1.1',
description='Sending kill signal after specified delay',
author='jar3b',
author_email='hellotan@live.ru',
url='https://github.com/jar3b/asyncio-seppuku',
download_url='https://github.com/jar3b/asyncio-seppuku/archive/0.1.1.tar.gz',
keywords='asyncio signal python3',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)