Skip to content

Commit 31b384c

Browse files
committed
uasyncio.websocket.server: Release 0.1.
1 parent 60de502 commit 31b384c

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
srctype = micropython-lib
2+
type = package
3+
version = 0.1
4+
author = Paul Sokolovsky
5+
depends = uasyncio

uasyncio.websocket.server/setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import sys
2+
# Remove current dir from sys.path, otherwise setuptools will peek up our
3+
# module instead of system's.
4+
sys.path.pop(0)
5+
from setuptools import setup
6+
sys.path.append("..")
7+
import sdist_upip
8+
9+
setup(name='micropython-uasyncio.websocket.server',
10+
version='0.1',
11+
description='uasyncio.websocket.server module for MicroPython',
12+
long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.",
13+
url='https://github.com/micropython/micropython-lib',
14+
author='Paul Sokolovsky',
15+
author_email='[email protected]',
16+
maintainer='micropython-lib Developers',
17+
maintainer_email='[email protected]',
18+
license='MIT',
19+
cmdclass={'sdist': sdist_upip.sdist},
20+
packages=['uasyncio.websocket'],
21+
install_requires=['micropython-uasyncio'])

0 commit comments

Comments
 (0)