hyp/setup.py
2015-03-29 12:57:46 +02:00

13 lines
317 B
Python

from setuptools import setup
setup(name='hyp',
version='1.0.0',
description='Hyperminimal https server',
url='http://github.com/rnhmjoj/hyp',
author='Michele Guerini Rocco',
license='MIT-GPL',
packages=['hyp'],
entry_points={
'console_scripts': ['hyp = hyp.hyp:main']
},
)