setup.py 388 B

12345678910111213
  1. #!/usr/bin/env python
  2. from distutils.core import setup
  3. setup(name='wspy',
  4. version='0.9',
  5. description='A standalone implementation of websockets (RFC 6455).',
  6. author='Taddeus Kroes',
  7. author_email='taddeuskroes@gmail.com',
  8. url='https://github.com/taddeus/wspy',
  9. package_dir={'wspy': '.'},
  10. packages=['wspy'],
  11. license='3-clause BSD License')