[otci] update package info (#10706)

This commit is contained in:
Yakun Xu
2024-09-18 23:11:02 +08:00
committed by GitHub
parent f07bcc2bfe
commit ba3bce2b62
3 changed files with 26 additions and 4 deletions
+1 -1
View File
@@ -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
View File
@@ -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="openthread-users@googlegroups.com" },
]
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"
+3 -3
View File
@@ -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",
@@ -42,7 +42,7 @@ setuptools.setup(
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',