forked from solokeys/solo1-cli
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 860 Bytes
/
pyproject.toml
File metadata and controls
34 lines (32 loc) · 860 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "solo"
dist-name = "onlykey-solo-python"
author = "CryptoTrust"
author-email = "admin@crp.to"
home-page = "https://github.com/trustcrypto/onlykey-solo-python"
requires-python = ">=3.6"
description-file = "README.md"
requires = [
"click >= 7.1",
"cryptography",
"ecdsa",
"fido2 == 0.9.3",
"intelhex",
"pyserial",
"pyusb",
"requests",
]
classifiers=[
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
[tool.flit.scripts]
solo = "solo.cli:solo_cli"