hyp/setup.py

13 lines
317 B
Python
Raw Normal View History

2015-03-29 12:57:46 +02:00
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']
},
)