-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
32 lines (29 loc) · 1009 Bytes
/
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
from setuptools import setup
try:
long_description = open('README.md').read()
except:
long_description = "Easy websockets for bottle."
setup(
name='bottle-websocket',
version='0.2.9',
license='MIT',
url='https://github.com/zeekay/bottle-websocket',
author='Zach Kelling',
author_email='[email protected]',
packages=['bottle_websocket',],
package_data={'': ['README.md']},
description='WebSockets for bottle',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=['bottle', 'gevent-websocket'],
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='bottle websockets',
)