Commit 7fe869f4 authored by Taddeüs Kroes's avatar Taddeüs Kroes

Updated setup script

parent f713ab9b
#!/usr/bin/env python #!/usr/bin/env python
from distutils.core import setup from distutils.core import setup
setup(
name='wspy',
setup(name='wspy', version='0.91',
version='0.9', description='A standalone implementation of websockets (RFC 6455).',
description='A standalone implementation of websockets (RFC 6455).', author='Taddeus Kroes',
author='Taddeus Kroes', author_email='taddeus@kompiler.org',
author_email='taddeuskroes@gmail.com', url='https://github.com/taddeus/wspy',
url='https://github.com/taddeus/wspy', package_dir={'wspy': '.'},
package_dir={'wspy': '.'}, packages=['wspy'],
packages=['wspy'], license='3-clause BSD License'
license='3-clause BSD License') )
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment