-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
30 lines (26 loc) · 1000 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
version="1.1"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
setup(name='wss',
version=version,
description='Python Secure Websockets server/client that uses asyncio and authobahn',
author='Kevron Rees',
author_email='[email protected]',
license='LGPLv2+',
classifiers=classifiers,
url='https://github.com/tripzero/python-wss',
packages=["wss"],
install_requires=["autobahn"],
include_package_data = True)