warped/setup.py
Christoph Stahl de5549e43c Version 0.1.1
Default values are now shown in HTML-Form
2017-05-29 14:55:11 +02:00

21 lines
634 B
Python

from setuptools import setup, find_packages
setup(
name='warped',
version='0.1.1',
packages=find_packages(),
url='https://git.k-fortytwo.de/christofsteel/warp',
download_url = 'https://git.k-fortytwo.de/christofsteel/warped/archive/0.1.0.tar.gz',
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': [
"warped = warped.hook:main"
]
},
include_package_data = True,
zip_safe=False,
install_requires = ['Flask']
)