warped/setup.py

20 lines
538 B
Python

from setuptools import setup, find_packages
setup(
name='warp',
version='0.0.1',
packages=find_packages(),
url='https://git.k-fortytwo.de/christofsteel/warp',
license='MIT',
author='Christoph Stahl',
author_email='christoph.stahl@uni-dortmund.de',
description='A webbased wrapper for the argument parser in Python',
entry_points={
'console_scripts': [
"warp = warp.hook:main"
]
},
include_package_data = True,
zip_safe=False,
install_requires = ['Flask']
)