-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (64 loc) · 1.54 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "orc-dev-cli"
version = "0.7.2"
description = "CLI dev tool for interacting with openshift clusters and RHOAM addons."
authors = ["Jim Fitzpatrick <jimfity@gmail.com>"]
readme="README.md"
homepage = "https://github.com/Boomatang/orc-dev-cli"
repository = "https://github.com/Boomatang/orc-dev-cli"
documentation = "https://github.com/Boomatang/orc-dev-cli/tree/main/doc"
keywords = ['OpenShift', 'addon', 'operator', 'index', 'bundle']
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
]
include = ["orc_dev_cli/data"]
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.2"
toml = {version = "^0.10.2", python = "<3.11"}
requests = "^2.28.1"
pyperclip = "^1.8.2"
semver = "^2.13.0"
podman = "^4.2.0"
GitPython = "^3.1.32"
PyYAML = "^6.0"
pydantic = "^1.10.4"
rich = "^13.2.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1"
black = "^22.3.0"
mkdocs = "^1.3.0"
flake8 = "^5.0.4"
bandit = {extras = ["toml"], version = "^1.7.6"}
isort = "^5.10.1"
mock = "^4.0.3"
coverage = "^6.5.0"
[tool.poetry.scripts]
orc = 'orc_dev_cli.cli:cli'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
py36 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/
'''
[tool.isort]
profile = "black"
[tool.bandit]
assert_used.skips = ['*_test.py', '*/test_*.py']