-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 796 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 796 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
[tool.poetry]
name = "balena-sdk"
version = "17.1.0"
description = ""
authors = ["Balena <info@balena.io>"]
license = "Apache License 2.0"
readme = "README.md"
packages = [{include = "balena"}]
[tool.poetry.dependencies]
python = "^3.8.1"
PyJWT = ">=2.0.0"
requests = ">=2.19.1"
pyOpenSSL = ">=18.0.0"
Twisted = ">=18.7.0"
service-identity = "*"
semver = "^3.0.0"
pine-client= "*"
typing_extensions = "*"
deprecated = "^1.2.13"
ratelimit = "^2.2.1"
[tool.poetry.dev-dependencies]
black = {version = "*", python = ">=3.8.1"}
pydocstyle = "*"
flake8 = "*"
pytest= "*"
[tool.pytest.ini_options]
# Tests are run via the custom action in .github/actions/test/action.yml
addopts = "-s"
python_files = ["skip.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"