hyp/setup.py

14 lines
357 B
Python
Raw Normal View History

2015-03-29 12:57:46 +02:00
from setuptools import setup
2015-03-29 13:11:04 +02:00
setup(name='hyp-server',
2015-03-29 12:57:46 +02:00
version='1.0.0',
description='Hyperminimal https server',
url='http://github.com/rnhmjoj/hyp',
2015-03-29 13:11:04 +02:00
author='rnhmjoj',
author_email='micheleguerinirocco@me.com',
2015-03-29 12:57:46 +02:00
license='MIT-GPL',
packages=['hyp'],
entry_points={
'console_scripts': ['hyp = hyp.hyp:main']
},
)