mirror of
https://github.com/espressif/openthread.git
synced 2026-06-06 05:24:51 +00:00
[otci] update package info (#10706)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user