-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a9defa
commit a6ddef7
Showing
4 changed files
with
28 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
include README.md | ||
include setup.py | ||
include SimpleWebSocketServer/SimpleExampleServer.py | ||
include SimpleWebSocketServer/SimpleHTTPSServer.py | ||
include SimpleWebSocketServer/SimpleWebSocketServer.py | ||
include SimpleWebSocketServer/__init__.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .SimpleWebSocketServer import * | ||
|
||
name="SimpleWebSocketServer" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
from distutils.core import setup | ||
|
||
setup( | ||
name='SimpleWebSocketServer', | ||
version='0.1.0', | ||
author='Dave', | ||
packages=['SimpleWebSocketServer'], | ||
url='https://github.com/dpallot/simple-websocket-server/', | ||
description='A Simple Websocket Server written in Python', | ||
long_description=open('README.md').read() | ||
) | ||
from distutils.core import setup | ||
|
||
setup( | ||
name='SimpleWebSocketServer', | ||
version='0.1.1', | ||
author='Dave Pallot', | ||
author_email='[email protected]', | ||
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", | ||
], | ||
) |