22 lines
701 B
Python
22 lines
701 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='asyncio-seppuku',
|
|
packages=['seppuku'],
|
|
version='0.1.2',
|
|
description='Sending kill signal after specified delay',
|
|
author='jar3b',
|
|
author_email='hellotan@live.ru',
|
|
license="MIT license",
|
|
url='https://github.com/jar3b/asyncio-seppuku',
|
|
download_url='https://github.com/jar3b/asyncio-seppuku/archive/0.1.2.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',
|
|
],
|
|
)
|