-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1022 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[project]
name = "onekey_client"
version = "2.3.0"
description = "ONEKEY API client"
authors = [{ name = "ONEKEY", email = "support@onekey.com" }]
requires-python = ">=3.9"
readme = "README.md"
license = "MIT"
keywords = ["iot", "security", "firmware", "analysis"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security",
]
dependencies = [
"httpx==0.28.1",
"pydantic==2.10.6",
"Authlib>=1.4.1,<2.0.0",
"importlib-resources>=6.0.0,<7",
"click>=8.1.3,<9",
"junit-xml>=1.9,<2",
]
[project.urls]
Homepage = "https://www.onekey.com/"
GitHub = "https://github.com/onekey-sec/python-client"
"Bug Tracker" = "https://github.com/onekey-sec/python-client/issues"
[project.scripts]
onekey = "onekey_client.cli.cli:main"
[dependency-groups]
dev = ["ruff==0.14.9"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"