Doc and cleanup.

This commit is contained in:
Roberto Abdelkader Martínez Pérez
2019-04-02 14:12:24 +02:00
parent cf75aec2a6
commit a6a10818c6
3 changed files with 645 additions and 34 deletions
+21
View File
@@ -0,0 +1,21 @@
from setuptools import setup
setup(
name='kapow',
version='0.0.1',
py_modules=['kapow'],
include_package_data=True,
install_requires=[
'aiofiles==0.4.0',
'aiohttp==3.5.4',
'pyparsing==2.3.1',
'Click==7.0'
],
zip_safe=True,
entry_points={
'console_scripts': [
'kapow = kapow:main',
]
}
)