Skip to content

Commit beb6aa9

Browse files
author
Marco Link
committed
Added setup.py for easy install with pip
1 parent c2f4a55 commit beb6aa9

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

setup.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env python
2+
3+
from distutils.core import setup
4+
5+
setup(
6+
name='MicroWebSrv2',
7+
version='master',
8+
description='Embedded webserver for MicroPython and CPython',
9+
long_description='MicroWebSrv2 is the new powerful embedded Web Server for MicroPython and CPython that supports route handlers, modules like WebSockets or PyhtmlTemplate and a lot of simultaneous requests (in thousands!).',
10+
author='Jean-Christophe Bos',
11+
author_email='[email protected]',
12+
url='https://github.com/jczic/MicroWebSrv2',
13+
download_url='https://github.com/jczic/MicroWebSrv2/archive/master.zip',
14+
packages=[
15+
'MicroWebSrv2'
16+
],
17+
classifiers=[
18+
'Topic :: Software Development :: Embedded Systems',
19+
'Environment :: Web Environment',
20+
'Topic :: Internet :: WWW/HTTP'
21+
],
22+
)

0 commit comments

Comments
 (0)