File tree 5 files changed +13
-8
lines changed
adafruit_ble_berrymed_pulse_oximeter
5 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ jobs:
18
18
awk -F '\/' '{ print tolower($2) }' |
19
19
tr '_' '-'
20
20
)
21
- - name : Set up Python 3.6
21
+ - name : Set up Python 3.7
22
22
uses : actions/setup-python@v1
23
23
with :
24
- python-version : 3.6
24
+ python-version : 3.7
25
25
- name : Versions
26
26
run : |
27
27
python3 --version
Original file line number Diff line number Diff line change 21
21
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
22
# THE SOFTWARE.
23
23
"""
24
- `nordic `
25
- ====================================================
24
+ `adafruit_ble_berrymed_pulse_oximeter.adafruit_ble_transparent_uart `
25
+ =============================================================================
26
26
27
27
This module provides Services used by MicroChip
28
28
Original file line number Diff line number Diff line change
1
+ :py:mod: `~adafruit_ble_berrymed_pulse_oximeter `
2
+ ===============================================
1
3
2
4
.. If you created a package, create one automodule per module in the package.
3
5
6
8
7
9
.. automodule :: adafruit_ble_berrymed_pulse_oximeter
8
10
:members:
11
+
12
+ .. automodule :: adafruit_ble_berrymed_pulse_oximeter.adafruit_ble_transparent_uart
13
+ :members:
Original file line number Diff line number Diff line change 21
21
# Uncomment the below if you use native CircuitPython modules such as
22
22
# digitalio, micropython and busio. List the modules you use. Without it, the
23
23
# autodoc module docs will fail to generate with a warning.
24
- # autodoc_mock_imports = ["digitalio", "busio "]
24
+ autodoc_mock_imports = ["bleak " ]
25
25
26
26
27
27
intersphinx_mapping = {
Original file line number Diff line number Diff line change 18
18
long_description = f .read ()
19
19
20
20
setup (
21
- name = "adafruit-circuitpython-ble-pulse-oximeter" ,
21
+ name = "adafruit-circuitpython-ble-berrymed- pulse-oximeter" ,
22
22
use_scm_version = True ,
23
23
setup_requires = ["setuptools_scm" ],
24
24
description = "BLE Support for BerryMed Pulse Oximeter Service" ,
44
44
"Programming Language :: Python :: 3.5" ,
45
45
],
46
46
# What does your project relate to?
47
- keywords = "adafruit blinka circuitpython micropython ble_contec_pulse_oximeter ble pulse oximeter berrymed spo2" ,
47
+ keywords = "adafruit blinka circuitpython micropython ble_berrymed_pulse_oximeter ble pulse oximeter berrymed spo2" ,
48
48
# You can just specify the packages manually here if your project is
49
49
# simple. Or you can use find_packages().
50
50
# TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER,
51
51
# CHANGE `py_modules=['...']` TO `packages=['...']`
52
- py_modules = ["adafruit_ble_contec_pulse_oximeter " ],
52
+ packages = ["adafruit_ble_berrymed_pulse_oximeter " ],
53
53
)
You can’t perform that action at this time.
0 commit comments