initial commit (ready for pypi)

This commit is contained in:
George K
2018-02-16 19:52:02 +03:00
parent c4fd5eace6
commit 062b7933a2
6 changed files with 68 additions and 0 deletions

20
setup.py Normal file
View File

@@ -0,0 +1,20 @@
from distutils.core import setup
setup(
name='asyncio-seppuku',
packages=['seppuku'],
version='0.1.0',
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.0.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',
],
)