warped/setup.py
2017-04-24 12:25:05 +02:00

19 lines
511 B
Python

from setuptools import setup, find_packages
setup(
name='warp',
version='0.0.1',
packages=['warp'],
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,
install_requires = ['Flask']
)