forked from onekey-sec/python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 1 KB
/
pyproject.toml
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
[tool.poetry]
name = "onekey_client"
version = "2.3.0"
description = "ONEKEY API client"
homepage = "https://www.onekey.com/"
authors = ["ONEKEY <[email protected]>"]
license = "MIT"
readme = "README.md"
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"]
[tool.poetry.urls]
"GitHub" = "https://github.com/onekey-sec/python-client"
"Bug Tracker" = "https://github.com/onekey-sec/python-client/issues"
[tool.poetry.dependencies]
python = "^3.8.0"
httpx = "0.23.0"
pydantic = "1.8.2"
Authlib = "^0.15.3"
importlib-resources = "^5.1.2"
click = "^8.1.3"
junit-xml = "^1.9"
[tool.poetry.dev-dependencies]
black = "^24.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
onekey = "onekey_client.cli.cli:main"