hyp/setup.py

21 lines
726 B
Python
Raw Permalink 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-31 01:04:05 +02:00
version='1.1.0',
2015-03-29 12:57:46 +02:00
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']
},
2015-03-31 01:04:05 +02:00
keywords=['http', 'https', 'ssl', 'tls', 'upload', 'server'],
classifiers=[
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Communications :: File Sharing',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: GNU General Public License (GPL)',
])