Skip to content

Commit 37421a9

Browse files
author
Marco Link
committed
Fixed: missing libs and mods in setup.py
1 parent beedfd4 commit 37421a9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env python
22

3-
from distutils.core import setup
3+
import setuptools
44

5-
setup(
5+
setuptools.setup(
66
name='MicroWebSrv2',
77
version='master',
88
description='Embedded webserver for MicroPython and CPython',
@@ -12,7 +12,9 @@
1212
url='https://github.com/jczic/MicroWebSrv2',
1313
download_url='https://github.com/jczic/MicroWebSrv2/archive/master.zip',
1414
packages=[
15-
'MicroWebSrv2'
15+
'MicroWebSrv2',
16+
'MicroWebSrv2/libs',
17+
'MicroWebSrv2/mods',
1618
],
1719
classifiers=[
1820
'Topic :: Software Development :: Embedded Systems',

0 commit comments

Comments
 (0)