We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38f1e5e commit 78b3614Copy full SHA for 78b3614
setup.py
@@ -1,18 +1,15 @@
1
#!/usr/bin/env python
2
from setuptools import setup
3
4
-from os.path import join, dirname, realpath
5
-root = lambda path: join(dirname(realpath(__file__)), path)
6
-
7
setup(
8
name='Flask-uWSGI-WebSocket',
9
- version='0.1.2',
+ version='0.1.3',
10
url='https://github.com/zeekay/flask-uwsgi-websocket',
11
- license=open(root('LICENSE')).read(),
+ license='MIT',
12
author='Zach Kelling',
13
author_email='zk@monoid.io',
14
description='High-performance WebSockets for your Flask apps powered by uWSGI.',
15
- long_description=open(root('README.rst')).read(),
+ long_description=open('README.rst').read(),
16
py_modules=['flask_uwsgi_websocket'],
17
zip_safe=False,
18
include_package_data=True,
0 commit comments