We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent beedfd4 commit 37421a9Copy full SHA for 37421a9
setup.py
@@ -1,8 +1,8 @@
1
#!/usr/bin/env python
2
3
-from distutils.core import setup
+import setuptools
4
5
-setup(
+setuptools.setup(
6
name='MicroWebSrv2',
7
version='master',
8
description='Embedded webserver for MicroPython and CPython',
@@ -12,7 +12,9 @@
12
url='https://github.com/jczic/MicroWebSrv2',
13
download_url='https://github.com/jczic/MicroWebSrv2/archive/master.zip',
14
packages=[
15
- 'MicroWebSrv2'
+ 'MicroWebSrv2',
16
+ 'MicroWebSrv2/libs',
17
+ 'MicroWebSrv2/mods',
18
],
19
classifiers=[
20
'Topic :: Software Development :: Embedded Systems',
0 commit comments