-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathsetup.py
24 lines (22 loc) · 813 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
import setuptools
setuptools.setup(
name='MicroWebSrv2',
version='master',
description='Embedded webserver for MicroPython and CPython',
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!).',
author='Jean-Christophe Bos',
author_email='[email protected]',
url='https://github.com/jczic/MicroWebSrv2',
download_url='https://github.com/jczic/MicroWebSrv2/archive/master.zip',
packages=[
'MicroWebSrv2',
'MicroWebSrv2/libs',
'MicroWebSrv2/mods',
],
classifiers=[
'Topic :: Software Development :: Embedded Systems',
'Environment :: Web Environment',
'Topic :: Internet :: WWW/HTTP'
],
)