1fc924798f
1. add skyline community icons 2. add vscode debugging tips 3. add quotas in skyline.yaml.sample 4. add flake8/bandit/pycodestyle plugins Change-Id: Ib63c12c613c4f6cb24879324b6445cedc268724b
61 lines
1.2 KiB
TOML
61 lines
1.2 KiB
TOML
[tool.poetry]
|
|
name = "skyline"
|
|
version = "0.1.0"
|
|
description = ""
|
|
license = "Apache-2.0"
|
|
authors = ["OpenStack <openstack-discuss@lists.openstack.org>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
skyline-config = "*"
|
|
skyline-log = "*"
|
|
skyline-policy-manager = "*"
|
|
skyline-apiserver = "*"
|
|
skyline-nginx = "*"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
skyline-config = {path = "libs/skyline-config", develop = true}
|
|
skyline-log = {path = "libs/skyline-log", develop = true}
|
|
skyline-policy-manager = {path = "libs/skyline-policy-manager", develop = true}
|
|
skyline-apiserver = {path = "libs/skyline-apiserver", develop = true}
|
|
skyline-nginx = {path = "libs/skyline-nginx", develop = true}
|
|
flake8 = "^4.0.1"
|
|
pycodestyle = "^2.8.0"
|
|
bandit = "^1.7.4"
|
|
|
|
[tool.black]
|
|
line-length = 98
|
|
target-version = ['py38']
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
(
|
|
/(
|
|
\.eggs
|
|
| \.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
)/
|
|
| exclude.py
|
|
)
|
|
'''
|
|
verbos = true
|
|
|
|
[tool.isort]
|
|
multi_line_output = 3
|
|
include_trailing_comma = true
|
|
force_grid_wrap = 0
|
|
use_parentheses = true
|
|
line_length = 98
|
|
reverse_relative = true
|
|
combine_as_imports = true
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|