瀏覽代碼

Added setup script

Taddeus Kroes 12 年之前
父節點
當前提交
c1bcd85291
共有 1 個文件被更改,包括 12 次插入0 次删除
  1. 12 0
      setup.py

+ 12 - 0
setup.py

@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+from distutils.core import setup
+
+
+setup(name='twspy',
+      version='0.8',
+      description='A standalone implementation of websockets (RFC 6455)',
+      author='Taddeus Kroes',
+      author_email='taddeuskroes@gmail.com',
+      url='https://github.com/taddeus/twspy',
+      package_dir={'twspy': '.'},
+      packages=['twspy'])