mpflash 1.25.2__py3-none-any.whl → 1.26.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
mpflash/basicgit.py CHANGED
@@ -261,7 +261,7 @@ def fetch(repo: Union[Path, str]) -> bool:
261
261
  return result.returncode == 0 if result else False
262
262
 
263
263
 
264
- def pull(repo: Union[Path, str], branch: str = "main") -> bool:
264
+ def pull(repo: Union[Path, str], branch: str = "main", force: bool = True) -> bool:
265
265
  """
266
266
  pull a repo origin into main
267
267
  repo should be in the form of : path/.git
@@ -272,7 +272,9 @@ def pull(repo: Union[Path, str], branch: str = "main") -> bool:
272
272
  raise NotADirectoryError
273
273
  repo = Path(repo)
274
274
  # first checkout HEAD
275
- cmd = ["git", "checkout", branch, "--quiet", "--force"]
275
+ cmd = ["git", "checkout", branch, "--quiet"]
276
+ if force:
277
+ cmd.append("--force")
276
278
  result = _run_local_git(cmd, repo=repo, expect_stderr=True)
277
279
  if not result:
278
280
  log.error("error during git checkout main", result)
mpflash/cli_download.py CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  from pathlib import Path
4
4
 
5
- from pytest import param
6
5
  import rich_click as click
7
6
  from loguru import logger as log
8
7
 
@@ -98,7 +97,7 @@ def cli_download(**kwargs) -> int:
98
97
  log.error(f"{e}")
99
98
  else:
100
99
  # no boards specified - detect connected ports and boards
101
- params.ports, params.boards, _ , _ = connected_ports_boards_variants(include=params.serial, ignore=params.ignore)
100
+ params.ports, params.boards, _, _ = connected_ports_boards_variants(include=params.serial, ignore=params.ignore)
102
101
 
103
102
  params = ask_missing_params(params)
104
103
  if not params: # Cancelled by user
@@ -51,6 +51,9 @@ def boardlist_from_repo(
51
51
  if not mpy_dir.is_dir():
52
52
  log.error(f"Directory {mpy_dir} not found")
53
53
  return longlist
54
+ # make sure that we have all the latest and greatest from the repo
55
+ git.fetch(mpy_dir)
56
+ git.pull(mpy_dir, branch="master", force=True)
54
57
  for version in versions:
55
58
  build_nr = ""
56
59
  if "preview" in version:
@@ -99,6 +102,7 @@ def package_repo(mpy_path: Path):
99
102
  mpy_path = mpy_path or Path("../repos/micropython")
100
103
  log.info(f"Packaging Micropython boards from {mpy_path}")
101
104
  mp_versions = micropython_versions(minver="1.18")
105
+ # checkput
102
106
  longlist = boardlist_from_repo(
103
107
  versions=mp_versions,
104
108
  mpy_dir=mpy_path,
Binary file
@@ -61,5 +61,4 @@ def _find_board_id_by_description(
61
61
  )
62
62
  boards = qry.all()
63
63
 
64
-
65
64
  return boards
@@ -1,45 +1,71 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: mpflash
3
- Version: 1.25.2
3
+ Version: 1.26.1
4
4
  Summary: Flash and download tool for MicroPython firmwares
5
+ Project-URL: Homepage, https://github.com/Josverl/mpflash
6
+ Project-URL: Documentation, https://github.com/Josverl/mpflash/blob/main/README.md
7
+ Project-URL: Repository, https://github.com/Josverl/mpflash
8
+ Project-URL: Bug Tracker, https://github.com/Josverl/mpflash/issues
9
+ Author-email: Jos Verlinde <jos_verlinde@hotmail.com>
5
10
  License: MIT
6
- Keywords: MicroPython,firmware,flash,download,UF2,esptool
7
- Author: Jos Verlinde
8
- Author-email: jos_verlinde@hotmail.com
9
- Requires-Python: >=3.9, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*, !=3.8.*
11
+ License-File: LICENSE
12
+ Keywords: MicroPython,UF2,download,esptool,firmware,flash
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Intended Audience :: Developers
10
15
  Classifier: License :: OSI Approved :: MIT License
11
16
  Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.9
12
18
  Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
13
20
  Classifier: Programming Language :: Python :: 3.12
14
- Classifier: Programming Language :: Python :: 3.13
15
21
  Classifier: Programming Language :: Python :: Implementation :: CPython
16
22
  Classifier: Programming Language :: Python :: Implementation :: MicroPython
17
23
  Classifier: Topic :: Software Development :: Build Tools
18
- Requires-Dist: beautifulsoup4 (>=4.12.3,<5.0.0)
19
- Requires-Dist: bincopy (>=20.0.0,<21.0.0)
20
- Requires-Dist: blkinfo (>=0.2.0,<0.3.0)
21
- Requires-Dist: cache-to-disk (>=2.0.0,<3.0.0)
22
- Requires-Dist: cachetools (>=5.3.0,<6.0.0)
23
- Requires-Dist: esptool (>=4.7.0,<5.0.0)
24
- Requires-Dist: inquirer (>=3.2.4,<4.0.0)
25
- Requires-Dist: jsonlines (>=4.0.0,<5.0.0)
26
- Requires-Dist: jsons (>=1.6.3,<2.0.0)
27
- Requires-Dist: libusb (>=1.0.27,<2.0.0) ; sys_platform == "win32"
28
- Requires-Dist: loguru (>=0.7.2,<0.8.0)
29
- Requires-Dist: mpremote (>=1.22.0,<2.0.0)
30
- Requires-Dist: packaging (>=24.2,<25.0)
31
- Requires-Dist: platformdirs (>=4.2.0,<5.0.0)
32
- Requires-Dist: psutil (>=7.0.0,<8.0.0)
33
- Requires-Dist: pygithub (>=2.1.1,<3.0.0)
34
- Requires-Dist: pyusb (>=1.2.1,<2.0.0)
35
- Requires-Dist: pywin32 (>=310,<311) ; sys_platform == "win32"
36
- Requires-Dist: requests (>=2.31.0,<3.0.0)
37
- Requires-Dist: rich-click (>=1.8.1,<2.0.0)
38
- Requires-Dist: sqlalchemy (>=2.0.41,<3.0.0)
39
- Requires-Dist: tenacity (==9.0.0)
40
- Requires-Dist: tomli-w (>=1.2.0,<2.0.0)
41
- Project-URL: Homepage, https://github.com/Josverl/mpflash/blob/main/README.md
42
- Project-URL: Repository, https://github.com/Josverl/mpflash
24
+ Classifier: Topic :: System :: Hardware
25
+ Classifier: Topic :: Utilities
26
+ Requires-Python: >=3.9.2
27
+ Requires-Dist: beautifulsoup4>=4.12.3
28
+ Requires-Dist: bincopy>=20.0.0
29
+ Requires-Dist: blkinfo>=0.2.0
30
+ Requires-Dist: cache-to-disk>=2.0.0
31
+ Requires-Dist: cachetools>=5.3.0
32
+ Requires-Dist: esptool>=4.7.0
33
+ Requires-Dist: inquirer>=3.2.4
34
+ Requires-Dist: jsonlines>=4.0.0
35
+ Requires-Dist: jsons>=1.6.3
36
+ Requires-Dist: libusb>=1.0.27; sys_platform == 'win32'
37
+ Requires-Dist: loguru>=0.7.2
38
+ Requires-Dist: mpremote>=1.22.0
39
+ Requires-Dist: packaging>=24.2
40
+ Requires-Dist: platformdirs>=4.2.0
41
+ Requires-Dist: psutil<8.0.0,>=7.0.0
42
+ Requires-Dist: pygithub>=2.1.1
43
+ Requires-Dist: pyusb>=1.2.1
44
+ Requires-Dist: pywin32>=310; sys_platform == 'win32'
45
+ Requires-Dist: requests>=2.31.0
46
+ Requires-Dist: rich-click>=1.8.1
47
+ Requires-Dist: sqlalchemy>=2.0.41
48
+ Requires-Dist: tenacity==9.0.0
49
+ Requires-Dist: tomli-w>=1.2.0
50
+ Requires-Dist: tomli>=2.2.1
51
+ Provides-Extra: dev
52
+ Requires-Dist: ipykernel>=6.29.5; extra == 'dev'
53
+ Requires-Dist: pandas>=2.2.3; extra == 'dev'
54
+ Requires-Dist: tornado>=6.5; extra == 'dev'
55
+ Provides-Extra: perf
56
+ Requires-Dist: scalene>=1.5.51; extra == 'perf'
57
+ Provides-Extra: test
58
+ Requires-Dist: coverage<8.0.0,>=6.4.3; extra == 'test'
59
+ Requires-Dist: distro>=1.8.0; extra == 'test'
60
+ Requires-Dist: fasteners>=0.19; extra == 'test'
61
+ Requires-Dist: mock<6.0.0,>=4.0.3; extra == 'test'
62
+ Requires-Dist: pandas>=2.2.3; extra == 'test'
63
+ Requires-Dist: pytest-cov>=6.0.0; extra == 'test'
64
+ Requires-Dist: pytest-github-actions-annotate-failures<0.4.0,>=0.1.7; extra == 'test'
65
+ Requires-Dist: pytest-json-report>=1.5.0; extra == 'test'
66
+ Requires-Dist: pytest-metadata<4.0.0,>=2.0.2; extra == 'test'
67
+ Requires-Dist: pytest-mock>=3.10.0; extra == 'test'
68
+ Requires-Dist: pytest<9.0.0,>=7.1.2; extra == 'test'
43
69
  Description-Content-Type: text/markdown
44
70
 
45
71
  # MPFLASH
@@ -373,4 +399,3 @@ npx all-contributors-cli add user things
373
399
  <!-- ALL-CONTRIBUTORS-LIST:END -->
374
400
 
375
401
  This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
376
-
@@ -1,14 +1,8 @@
1
1
  mpflash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  mpflash/ask_input.py,sha256=YUx65Xwj6dNPwWcbQiWG7U4wDW69zEdno2HcT1KwPBg,8886
3
- mpflash/basicgit.py,sha256=J1jWsM3QuYZLjj-e9yTsj7dLkxPvT4MFz3_YaEttyXg,10190
4
- mpflash/bootloader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- mpflash/bootloader/activate.py,sha256=orQOw4XTkXVZI-rMInRb0T5Wp3qA_BlzbJUA2gyBToU,2361
6
- mpflash/bootloader/detect.py,sha256=OagP2QVWeLLWkZt2paqEF6r4_x3QDcBGNCPOWfMy9NQ,2686
7
- mpflash/bootloader/manual.py,sha256=WYC4x-dxrSwVUfgnKTlu34pCzckrWJKZnWsARDocycI,3169
8
- mpflash/bootloader/micropython.py,sha256=v_kZkvg0uWZDbMrT78gmiYHbD83QLdnrctvEClI8iRg,529
9
- mpflash/bootloader/touch1200.py,sha256=VND7_YniS9Vx6WEaAxjI72RZZ6WBOwmBTsKJkbuaAHk,1105
3
+ mpflash/basicgit.py,sha256=lpGQxL10Mq8D8S56h87aMrBH0vo18ji_hE9v0KJ9P-o,10245
10
4
  mpflash/cli_add.py,sha256=hI-o-9hAGD3U8cbpXvy9Nuv1KHNTZ6mS57LC4BTBtj8,3495
11
- mpflash/cli_download.py,sha256=EeAK5NcuJq0UeePSyHtPvBj_jEt92gh0jBmeNUcA7i0,3555
5
+ mpflash/cli_download.py,sha256=v5aWJIv1bB5cinGa5BL0nS5vJ97dsFXaLpAaKN0RnrU,3528
12
6
  mpflash/cli_flash.py,sha256=SekC3goAu9_8UvMRMTEzIiiOK8js1GJRC6ymyA3BQWg,8820
13
7
  mpflash/cli_group.py,sha256=RITn2u1_77jKptapX0Vz3oUriPtGMzLVmjZOtM5SP88,2686
14
8
  mpflash/cli_list.py,sha256=dznrQrWQXvev20ai5AFvz2DFe3MNDR5RIrJmtvQou6A,2693
@@ -16,38 +10,46 @@ mpflash/cli_main.py,sha256=w5o3swYWDZUnYwIH46hGMCiFdPKVL1-R1YJRM-RSMiY,1496
16
10
  mpflash/common.py,sha256=wO3BjG1wtbfi37wNWPnmLk3jNi7kRUl1vTzgJUOwm9I,6355
17
11
  mpflash/config.py,sha256=3JIOuKcVIWzV3Y24n6ag_XJpSczMcCbd1fa6FpWGiz8,4143
18
12
  mpflash/connected.py,sha256=SZvqbnLztJH-DBByjGrWT24S5DGTSevWSwYncH6dFqk,3707
13
+ mpflash/downloaded.py,sha256=xaeMYrTIGj_v4scUBojeJPL-U1kWJG-bdvkvJMbPh4Q,4218
14
+ mpflash/errors.py,sha256=IAidY3qkZsXy6Pm1rdmVFmGyg81ywHhse3itaPctA2w,247
15
+ mpflash/list.py,sha256=IrJa3UBjhHHfStbb9fPVYA8JJzoFTyXtbcKGNRSH8sE,4132
16
+ mpflash/logger.py,sha256=XLu4VzMhMPlCdOo2HeS4GfyatE1swwwonV8c6a-GoD4,2651
17
+ mpflash/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ mpflash/versions.py,sha256=HuujLNdMKY_mQXyEqwXVHcU8nbuXeBiWP2TMA5JQhr4,4884
19
+ mpflash/bootloader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ mpflash/bootloader/activate.py,sha256=orQOw4XTkXVZI-rMInRb0T5Wp3qA_BlzbJUA2gyBToU,2361
21
+ mpflash/bootloader/detect.py,sha256=OagP2QVWeLLWkZt2paqEF6r4_x3QDcBGNCPOWfMy9NQ,2686
22
+ mpflash/bootloader/manual.py,sha256=WYC4x-dxrSwVUfgnKTlu34pCzckrWJKZnWsARDocycI,3169
23
+ mpflash/bootloader/micropython.py,sha256=v_kZkvg0uWZDbMrT78gmiYHbD83QLdnrctvEClI8iRg,529
24
+ mpflash/bootloader/touch1200.py,sha256=VND7_YniS9Vx6WEaAxjI72RZZ6WBOwmBTsKJkbuaAHk,1105
19
25
  mpflash/custom/__init__.py,sha256=l9RU9hRm9j7IuRgacw-gHYjA2Op-5prvRO5yyODhFMQ,5269
20
26
  mpflash/custom/naming.py,sha256=uHQzFIDzuWQUNajeGSUcf_A-o7cxX37kfgXhzpFHNtk,3304
21
27
  mpflash/db/__init__.py,sha256=wnIlO4nOXsPGXMbn2OCqHRsR-hUmtJsko8VdqjH3ZUE,45
22
28
  mpflash/db/core.py,sha256=6Ftp-Br3fmVO5prsvR7oc-XfF3qLJrTOy2YKosQeQQk,5271
23
- mpflash/db/gather_boards.py,sha256=r867g1U4xRRSGLie8cYtdotLyqy9Y7plxfqGQb-1ayw,3970
29
+ mpflash/db/gather_boards.py,sha256=fzCT1IGZ53FwkFrTY72ZeXH5klSlm5JFETsDU7lGYf4,4134
24
30
  mpflash/db/loader.py,sha256=CDlTj2T6w9Ch9s3RHi00E1TbUhjFsgXAsYSQr5kliB0,4889
25
31
  mpflash/db/meta.py,sha256=2pFTpFH-1zejGIDp2vs0hbX5rqUONt7B1WIvf8qBx5s,2248
26
- mpflash/db/micropython_boards.zip,sha256=K9Y0P6JBYlgoY_mR6m_pEVtNxzO9JHaQlb_TCZACcPI,17059
32
+ mpflash/db/micropython_boards.zip,sha256=HPYcWaY-lqkuo3Y6yksltNDG5kN4xr0Ghr511G2pALw,18349
27
33
  mpflash/db/models.py,sha256=hZrum-nS-TNFaZAksApjxYMBgGKI_kJ-4oFxc8a4WRk,3572
28
34
  mpflash/db/tools.py,sha256=6SEGfshNob4yRQ4h-Cj_xcWMRY28sbA8CWauNXV_uMI,814
29
35
  mpflash/download/__init__.py,sha256=EQez0Gj70rgrcJDbWEMYlezQyGgD747ipwmB0nt9eUI,9575
30
36
  mpflash/download/from_web.py,sha256=PVJDaFfYLJGXlPva5fExh4Yg2H7j3idyJEcfOiVVJBs,7608
31
37
  mpflash/download/fwinfo.py,sha256=XGWOWoJ9cqRVtBAgzVYWCIWaBZpLK595SniXn7bzrRk,1844
32
38
  mpflash/download/jid.py,sha256=V57M4K0uXXxBYOB4zOKkmXvUvEQdM_-w22LZ-iMIJSE,2344
33
- mpflash/downloaded.py,sha256=xaeMYrTIGj_v4scUBojeJPL-U1kWJG-bdvkvJMbPh4Q,4218
34
- mpflash/errors.py,sha256=IAidY3qkZsXy6Pm1rdmVFmGyg81ywHhse3itaPctA2w,247
35
39
  mpflash/flash/__init__.py,sha256=fkA_3pax9ZLckb14zFxATGk1YWMenpHBlvi66qJCIJA,3433
36
40
  mpflash/flash/esp.py,sha256=4977E1hDqJ4-EIkLzwrUtgZuc0ZTD7NvP1PQZgZ2DoU,3227
37
41
  mpflash/flash/stm32.py,sha256=jNgMpJaxUwtJ-v6VU1luD1t41AQprCUeNVCVEovxQe0,595
38
42
  mpflash/flash/stm32_dfu.py,sha256=W-3JsRQyf3DduoIRXDmGZ35RogqtjQgcJnk-GOtQoLE,3090
43
+ mpflash/flash/worklist.py,sha256=wf-R9yPsmcE54dnoPA29pEEzNPZI3JwY85V_DB0hXNI,6584
39
44
  mpflash/flash/uf2/__init__.py,sha256=haL84hP2p1ZjKF6dXJJHAB_NTf7jT91MuZvmvg9SpIA,3617
40
45
  mpflash/flash/uf2/boardid.py,sha256=U5wGM8VA3wEpUxQCMtuXpMZZomdVH8J_Zd5_GekUMuU,423
41
46
  mpflash/flash/uf2/linux.py,sha256=uTgqyS7C7xfQ25RrTcSUkt-m2u2Ks_o7bPLzIecPoC8,4355
42
47
  mpflash/flash/uf2/macos.py,sha256=JTaIpqnR_0k4oSEvzs9amhmK-PMxUJyZLnZ_wZwxa-0,1228
43
48
  mpflash/flash/uf2/uf2disk.py,sha256=4_P2l-kedM7VSliA2u706LQLxvu3xWSod1-lj-xjZis,298
44
49
  mpflash/flash/uf2/windows.py,sha256=OEeskObPtpIE4a5NzYIcBqg3FkM5MGPGEa4lGGOfntY,1338
45
- mpflash/flash/worklist.py,sha256=wf-R9yPsmcE54dnoPA29pEEzNPZI3JwY85V_DB0hXNI,6584
46
- mpflash/list.py,sha256=IrJa3UBjhHHfStbb9fPVYA8JJzoFTyXtbcKGNRSH8sE,4132
47
- mpflash/logger.py,sha256=XLu4VzMhMPlCdOo2HeS4GfyatE1swwwonV8c6a-GoD4,2651
48
50
  mpflash/mpboard_id/__init__.py,sha256=Z6gDDWTCSKPp2fsuaUz80zgrklBR9XDlSLF9y_evR9A,391
49
51
  mpflash/mpboard_id/alternate.py,sha256=ZhqfdA9sLJmyOfJ6WwK9wrzzUn6JQdkAreiL0q5XEQg,1913
50
- mpflash/mpboard_id/board_id.py,sha256=xdOna_ZpTHVnsV8XQ5rrTIRCuzU69HD_ZJoY19d7dCE,1894
52
+ mpflash/mpboard_id/board_id.py,sha256=7LE31gvzg-M4u_ivlsS0gOcEJpUKr6DffPun5oEPACA,1892
51
53
  mpflash/mpboard_id/board_info.json,sha256=A3ZIt38KvAy2NMB5srHorSBd3Q3wOZIXufWiIs3XLrs,1019745
52
54
  mpflash/mpboard_id/board_info.zip,sha256=-2bnQGRsIQuJUfz-7_-GQ8pMWJ1evhCez6yfjhXocNw,23213
53
55
  mpflash/mpboard_id/known.py,sha256=t-oREfW5P5Zue5zbte7WB9e7-mpZBF-NfHGTEUsOVLM,3521
@@ -55,17 +57,15 @@ mpflash/mpboard_id/resolve.py,sha256=5KCZ0Tcg3FYZ3HK_zux5EguwoSC2E03kCpW2fh4rN2A
55
57
  mpflash/mpremoteboard/__init__.py,sha256=4OIKAry-GeYUSgnEcs5TRb0xea0bstVQCOb28MjLDyk,14210
56
58
  mpflash/mpremoteboard/mpy_fw_info.py,sha256=ZDEPJN9XJnoG_oeWcLNiLJAD5bkVX2yI_j4K7msUxWM,5196
57
59
  mpflash/mpremoteboard/runner.py,sha256=H5f5JBcRnpF06Ui3xDY7IoDdO2Hex9lsI_eGMq5c2A4,4945
58
- mpflash/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
60
  mpflash/vendor/board_database.py,sha256=Cb8fEhJaZ2siMkLPW5rPwV9yzBsTtKGOqWUd9TxNgFM,8763
60
61
  mpflash/vendor/click_aliases.py,sha256=adLhqLxNpJEPjSCIRSTkR-QzSgavGFKT0cwRbjxpzRU,5395
61
62
  mpflash/vendor/dfu.py,sha256=6rqGCBS8mTxxaLtkdzJ8O6nc74kFk8jrkmKvxw-x-u8,5693
62
- mpflash/vendor/pico-universal-flash-nuke/LICENSE.txt,sha256=Zkc2iTNbib2NCMwtLjMEz0vFCPglgvaw6Mj7QiWldpQ,1484
63
- mpflash/vendor/pico-universal-flash-nuke/universal_flash_nuke.uf2,sha256=QuPMppqHMVOt3vDVU0bikHRLsTiDRQYNUcGQ_OLRFGI,28160
64
63
  mpflash/vendor/pydfu.py,sha256=KD1RHHuhvhWi-l1UB6GyggkxouDKtZgkG4ivRbIfwC4,21264
65
64
  mpflash/vendor/readme.md,sha256=BQ7Uxf8joeYMjTUuSLLBG49ob6a9MgFPIEwuc72-Mfw,415
66
- mpflash/versions.py,sha256=HuujLNdMKY_mQXyEqwXVHcU8nbuXeBiWP2TMA5JQhr4,4884
67
- mpflash-1.25.2.dist-info/entry_points.txt,sha256=Jk_visOhYOsZIcSP2Ms9hKqfKy1iorR-6dYltSoWCpY,52
68
- mpflash-1.25.2.dist-info/LICENSE,sha256=mWpNhsIxWzetYNnTpr4eb3HtgsxGIC8KcYWxXEcxQvE,1077
69
- mpflash-1.25.2.dist-info/METADATA,sha256=FkHpU3o9_3njLQFFOODMRmgFcoejObaRF9w2JoJ3mrM,27149
70
- mpflash-1.25.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
71
- mpflash-1.25.2.dist-info/RECORD,,
65
+ mpflash/vendor/pico-universal-flash-nuke/LICENSE.txt,sha256=Zkc2iTNbib2NCMwtLjMEz0vFCPglgvaw6Mj7QiWldpQ,1484
66
+ mpflash/vendor/pico-universal-flash-nuke/universal_flash_nuke.uf2,sha256=QuPMppqHMVOt3vDVU0bikHRLsTiDRQYNUcGQ_OLRFGI,28160
67
+ mpflash-1.26.1.dist-info/METADATA,sha256=mB9GYaFlwmoK2qp0FNqxsjW4WHc14k2F8RRj848AisU,28095
68
+ mpflash-1.26.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
69
+ mpflash-1.26.1.dist-info/entry_points.txt,sha256=DZ24tsMKlCyTkjWet9vCoq5dcFeY43RKtTsLreQI_R8,53
70
+ mpflash-1.26.1.dist-info/licenses/LICENSE,sha256=mWpNhsIxWzetYNnTpr4eb3HtgsxGIC8KcYWxXEcxQvE,1077
71
+ mpflash-1.26.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.3
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mpflash = mpflash.cli_main:mpflash
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- mpflash=mpflash.cli_main:mpflash
3
-