forked from dpallot/simple-websocket-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 644 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
setup(
name='SimpleWebSocketServer',
version='0.1.1',
author='Dave Pallot',
author_email='d.e.pallot@gmail.com',
packages=['SimpleWebSocketServer'],
url='https://github.com/dpallot/simple-websocket-server/',
description='A Simple Websocket Server written in Python',
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)