-
Notifications
You must be signed in to change notification settings - Fork 60
/
setup.py
executable file
·32 lines (31 loc) · 1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='Flask-uWSGI-WebSocket',
version='0.6.1',
url='https://github.com/zeekay/flask-uwsgi-websocket',
license='MIT',
author='Zach Kelling',
author_email='[email protected]',
description='High-performance WebSockets for your Flask apps powered by uWSGI.',
long_description=open('README.rst').read(),
py_modules=['flask_uwsgi_websocket'],
zip_safe=False,
include_package_data=True,
packages=find_packages(),
platforms='any',
install_requires=[
'Flask',
'uwsgi',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords='uwsgi flask websockets'
)