mirror of
https://github.com/kennethreitz/flask-sockets.git
synced 2026-06-05 23:10:16 +00:00
39 lines
1000 B
Python
39 lines
1000 B
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
Flask-Sockets
|
|
-------------
|
|
|
|
Elegant WebSockets for your Flask apps.
|
|
"""
|
|
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name='Flask-Sockets',
|
|
version='0.1',
|
|
url='https://github.com/kennethreitz/flask-sockets',
|
|
license='See License',
|
|
author='Kenneth Reitz',
|
|
author_email='_@kennethreitz.com',
|
|
description='Elegant WebSockets for your Flask apps.',
|
|
long_description=__doc__,
|
|
py_modules=['flask_sockets'],
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
platforms='any',
|
|
install_requires=[
|
|
'Flask',
|
|
'gevent',
|
|
'gevent-websocket'
|
|
],
|
|
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'
|
|
]
|
|
) |