Skip to content

Commit

Permalink
CPython: Add missing dependency modules "umqtt" and "urequests"
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Jul 26, 2021
1 parent ae70049 commit a5498d6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Development
===========


2021-07-26 0.11.4
=================
- CPython: Add missing dependency modules ``umqtt`` and ``urequests``


2021-07-26 0.11.3
=================
- CPython: Fix runtime dependency: Don't use ``os_path``
Expand Down
8 changes: 8 additions & 0 deletions setup_libraries.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@
'': 'dist-packages',
},
packages=find_packages('dist-packages'),

# py_modules lists top-level single file packages to include.
# find_packages only finds packages in directories with __init__.py files.
py_modules=[
"umqtt",
"urequests",
],

include_package_data=True,
package_data={
},
Expand Down

0 comments on commit a5498d6

Please sign in to comment.