-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
43 lines (38 loc) · 1.05 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
[tool.poetry]
name = "cloudkeeper-os"
version = "2.0.0"
description = "OpenStack backend for Cloudkeeper"
licence = "Apache-2.0"
authors = ["Jerome Pansanel <[email protected]>", "Michal Kimle <[email protected]>"]
readme = "README.md"
repository = "https://github.com/the-cloudkeeper-project/cloudkeeper-os"
[tool.poetry.dependencies]
python = "^3.6"
"oslo.config" = "^6.5"
"oslo.log" = "^3.40"
setuptools = "^40.8"
grpcio = "^1.18"
keystoneauth1 = "^3.11"
keystoneauth-oidc-refreshtoken = "^0.1"
python-glanceclient = "^2.15"
[tool.poetry.dev-dependencies]
pytest = "^4.1"
invoke = "^1.0"
flake8 = "^3.6"
flake8-bugbear = "^18.8"
flake8-import-order = "^0.18"
flake8-mypy = "^17.3"
pylint = "^2.2"
pep8-naming = "^0.7"
safety = "^1.8"
bandit = "^1.4"
grpcio-tools = "^1.18"
fixtures = "^3.0"
pytest-mock="^1.10"
[tool.poetry.scripts]
cloudkeeper-os = "cloudkeeper_os.main:run"
[tool.poetry.plugins."oslo.config.opts"]
cloudkeeper-os = "cloudkeeper_os.configuration:list_opts"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"