setup.py 375 B

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