diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8069f2f --- /dev/null +++ b/setup.py @@ -0,0 +1,38 @@ +#!/usr/bin/env python + +""" +Flask-WebSocket +------------- + +Elegant WebSockets for your Flask app +""" +from setuptools import setup + + +setup( + name='Flask-WebSocket', + version='0.1', + url='https://github.com/kennethreitz/flask-websocket', + license='See License', + author='Kenneth Reitz', + author_email='_@kennethreitz.com', + description='Elegant WebSockets for your Flask app.', + long_description=__doc__, + py_modules=['flask_websocket'], + zip_safe=False, + include_package_data=True, + platforms='any', + install_requires=[ + 'Flask', + 'gevent' + ], + classifiers=[ + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', + 'Topic :: Software Development :: Libraries :: Python Modules' + ] +) \ No newline at end of file