generated from ChameleonCloud/cc-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (43 loc) · 1.19 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
48
49
50
[tool.black]
# Set line length explicitly.
# See https://black.readthedocs.io/en/stable/the_black_code_style.html#line-length for more details
line-length = 88
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
filterwarnings = ["ignore::DeprecationWarning"]
[tool.isort]
known_first_party = "chi_edge"
[tool.poetry]
name = "python-chi-edge"
packages = [
{ include = "chi_edge" }
]
version = "0.2.3"
description = "Manage edge devices for use with the CHI@Edge IoT/Edge testbed."
authors = [
"Chameleon Project <[email protected]>"
]
[tool.poetry.scripts]
chi-edge = "chi_edge.cli:cli"
[tool.poetry.dependencies]
python = "^3.6.2"
click = "^8.0.1"
PyYAML = "^6.0"
python-chi = "^0.15.4"
keystoneauth1 = "^4.4.0"
rich = "^11.2.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
black = { version = "^21", allow-prereleases = true }
flake8 = "^3.9.0"
flake8-bugbear = "^21.4.1"
pytest-watch = "^4.2.0"
pytest-mock = "^3.5.1"
isort = "^5.8.0"
pydocstyle = "^6.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"