13 lines
317 B
Python
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']
|
||
|
},
|
||
|
)
|