-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.46 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
40
41
42
43
44
45
46
47
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "nrfcloud-utils"
version = "0.0.1"
description = "Scripts and utilities for working with the nRF Cloud"
authors = ["Nordic Semiconductor ASA"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/nRFCloud/utils"
packages = [
{ include = "nrfcloud_utils", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.10"
pyserial = "^3.5"
cbor2 = "^5.4.2.post1"
colorama = "^0.4.4"
cryptography = "^44.0.1"
pynrfjprog = "^10.23.0"
requests = "^2.32.0"
urllib3 = "^2.2.2"
semver = "^3.0.0"
pyjwt = "^2.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
pytest-cov = "^4.0.0"
pytest-watch = "^4.2.0"
[tool.poetry.scripts]
claim_and_provision_device = "nrfcloud_utils.claim_and_provision_device:run"
claim_devices = "nrfcloud_utils.claim_devices:run"
create_ca_cert = "nrfcloud_utils.create_ca_cert:run"
create_device_credentials = "nrfcloud_utils.create_device_credentials:run"
create_proxy_jwt = "nrfcloud_utils.create_proxy_jwt:run"
device_credentials_installer = "nrfcloud_utils.device_credentials_installer:run"
gather_attestation_tokens = "nrfcloud_utils.gather_attestation_tokens:run"
modem_credentials_parser = "nrfcloud_utils.modem_credentials_parser:run"
nrf_cloud_device_mgmt = "nrfcloud_utils.nrf_cloud_device_mgmt:run"
nrf_cloud_onboard = "nrfcloud_utils.nrf_cloud_onboard:run"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]