Skip to content

Commit bf6de91

Browse files
committed
Added basic meta module files
1 parent 00afddc commit bf6de91

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# python-websocketbridge
2+
3+
A simple bridge program which forwards data between a server socket and client websockets.
4+
5+

setup.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
author_email="[email protected]",
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+
)

0 commit comments

Comments
 (0)