forked from Kai-Bailey/WebSock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 705 Bytes
/
setup.py
File metadata and controls
22 lines (18 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
import os
def read(fname):
"""
Returns path to README
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='websock',
version = '1.0.4',
author = 'Kai Bailey',
author_email = 'kbailey1@ualberta.ca',
url = 'https://github.com/Kai-Bailey/websocket',
description = 'Multithreaded websocket server following RFC 6455 protocol',
long_description = read('README.md'),
long_description_content_type='text/markdown',
license = 'MIT',
keywords = 'websocket client server multithreaded',
packages = find_packages(exclude=['docs', 'tests', 'logo', 'scripts']))