from setuptools import setup, find_packages setup( name='websocket_server', version='0.4', packages=find_packages("."), url='https://github.com/Pithikos/python-websocket-server', license='MIT', author='Johan Hanssen Seferidis', author_email='manossef@gmail.com', install_requires=[ ], description='A simple fully working websocket-server in Python with no external dependencies', platforms='any', )