Skip to content

Commit

Permalink
[otci] update package info (openthread#10706)
Browse files Browse the repository at this point in the history
  • Loading branch information
bukepo authored Sep 18, 2024
1 parent f07bcc2 commit ba3bce2
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tools/cp-caps/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
adb_shell>=0.4.4
adb_shell[usb]>=0.4.4
build>=1.2.1
otci-openthread
openthread-otci
paramiko>=3.4.0
pyserial>=3.5
pyspinel>=1.0.3
22 changes: 22 additions & 0 deletions tools/otci/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "openthread-otci"
version = "0.0.1"
authors = [
{ name="The OpenThread Authors", email="[email protected]" },
]
description = "OpenThread Control Interface"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]

[project.urls]
Homepage = "https://github.com/openthread/openthread"
Issues = "https://github.com/openthread/openthread/issues"
6 changes: 3 additions & 3 deletions tools/otci/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
#
import setuptools

with open("README.md", "r") as fh:
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(
name="otci-openthread",
name="openthread-otci",
version="0.0.1",
author="The OpenThread Authors",
description="OpenThread Controller Interface",
Expand All @@ -42,7 +42,7 @@
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD 3-Clause License",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
Expand Down

0 comments on commit ba3bce2

Please sign in to comment.