From 326da80e75618708e0fb8f16400a31c062adf738 Mon Sep 17 00:00:00 2001 From: pelikhan Date: Tue, 16 Nov 2021 11:57:25 -0800 Subject: [PATCH] patch: rename pyJacdac to jacdac-python --- jacdac/README.md | 9 +++++++++ jacdac/devtools.py | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 jacdac/README.md diff --git a/jacdac/README.md b/jacdac/README.md new file mode 100644 index 0000000..f174dc1 --- /dev/null +++ b/jacdac/README.md @@ -0,0 +1,9 @@ +# Jacdac Python + +**Jacdac** is a plug-and-play hardware/software stack +for **microcontrollers** and their peripherals (sensors/actuators), +with applications to rapid prototyping, making, and physical computing. + +**Partner Preview: Jacdac is currently in preview. If you would like to join as a pre-release test partner, please email jacdac-tap@microsoft.com.** + +- [Documentation](https://microsoft.github.io/jacdac-docs/clients/python/) diff --git a/jacdac/devtools.py b/jacdac/devtools.py index fe5b6d5..f457555 100644 --- a/jacdac/devtools.py +++ b/jacdac/devtools.py @@ -6,7 +6,7 @@ def on_device_connect(dev: Device): print("connected " + dev.short_id) -print("pyJacdac dev tools") +print("jacdac-python dev tools") print("run scripts/devtools.sh to launch the development server") print("open http://localhost:8081 to connect") transport = WebSocketTransport("ws://localhost:8081") diff --git a/pyproject.toml b/pyproject.toml index 4665a06..6bc1068 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"] build-backend = "setuptools.build_meta" [project] -name = "pyJacdac" +name = "jacdac-python" authors = [{name = "Microsoft"}] dynamic = ["version", "description"] diff --git a/setup.cfg b/setup.cfg index cd56ac3..2163de8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -name = pyJacdac +name = jacdac-python description = Python client package for Microsoft Jacdac license = MIT long_description = file: jacdac/README.md