-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
51 lines (46 loc) · 999 Bytes
/
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
[tool.poetry]
name = "kubernetes-square"
version = "2.1.2"
description = ""
readme = "README.md"
authors = ["Oliver Nagy <[email protected]>"]
packages = [
{ include = "square" },
]
include = ["resources/defaultconfig.yaml"]
classifiers = [
"Topic :: Utilities",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
]
[tool.poetry.dependencies]
colorama = "*"
colorlog = "*"
h2 = "*"
httpx = "*"
jsonpatch = "*"
pydantic = ">=2.0"
python = ">=3.10"
pyyaml = "*"
tenacity = "*"
[tool.poetry.dev-dependencies]
bumpversion = "*"
flake8 = "*"
flake8-isort = "*"
ipython = ">=8.10"
isort = "*"
pytest = ">=7.2"
pytest-cov = "*"
pytest-dotenv = "*"
pytest-flake8 = "*"
respx = "*"
sh = "*"
[tool.poetry.scripts]
square = 'square.main:main'
[build-system]
requires = ["poetry>=1.2"]
build-backend = "poetry.masonry.api"
[tool.ruff]
line-length = 90