14 lines
357 B
Python
14 lines
357 B
Python
from setuptools import setup
|
|
|
|
setup(name='hyp-server',
|
|
version='1.0.0',
|
|
description='Hyperminimal https server',
|
|
url='http://github.com/rnhmjoj/hyp',
|
|
author='rnhmjoj',
|
|
author_email='micheleguerinirocco@me.com',
|
|
license='MIT-GPL',
|
|
packages=['hyp'],
|
|
entry_points={
|
|
'console_scripts': ['hyp = hyp.hyp:main']
|
|
},
|
|
) |