setup.py 353 B

123456789101112
  1. #!/usr/bin/env python
  2. from distutils.core import setup
  3. setup(name='twspy',
  4. version='0.8',
  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/twspy',
  9. package_dir={'twspy': '.'},
  10. packages=['twspy'])