File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ # python-websocketbridge
2
+
3
+ A simple bridge program which forwards data between a server socket and client websockets.
4
+
5
+
Original file line number Diff line number Diff line change
1
+ import setuptools
2
+
3
+ with open ("README.md" , "r" ) as fh :
4
+ long_description = fh .read ()
5
+
6
+ setuptools .setup (
7
+ name = "websocketbridge" , # Replace with your own username
8
+ version = "1.0.0" ,
9
+ author = "Ben Hack" ,
10
+
11
+ description = "A package for making a unix socket available on a websocket connection" ,
12
+ long_description = long_description ,
13
+ long_description_content_type = "text/markdown" ,
14
+ url = "https://github.com/Chinbob2515/python-socket-websocket-bridge" ,
15
+ packages = setuptools .find_packages (),
16
+ install_requires = [
17
+ "simple_websocket_server" ,
18
+ "simpleprotocol"
19
+ ],
20
+ classifiers = [
21
+ "Programming Language :: Python :: 3" ,
22
+ "License :: OSI Approved :: MIT License" ,
23
+ "Operating System :: OS Independent" ,
24
+ ],
25
+ python_requires = '>=3.6' ,
26
+ )
You can’t perform that action at this time.
0 commit comments