-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 860 Bytes
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 860 Bytes
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 = "icekube"
version = "1.1.0"
description = ""
authors = ["Mohit Gupta <mohit.gupta@withsecure.com>"]
[tool.poetry.dependencies]
python = ">= 3.11"
kubernetes = "^35"
neo4j = "^4.4.11"
typer = "^0.21"
pydantic = "^2.5.2"
tqdm = "^4.66.1"
jmespath = "^1.0.1"
[tool.poetry.group.dev.dependencies]
types-pyyaml = "*"
ipython = "*"
flake8 = "^6.1.0"
flake8-comprehensions = "*"
flake8-debugger = "*"
flake8-docstrings = "*"
flake8-isort = "*"
flake8-mutable = "*"
flake8-todo = "*"
isort = {version = "^4.3.21", extras = ["pyproject"]}
mypy = "*"
pyflakes = "*"
pytest = "*"
pytest-cov = "*"
rope = "*"
pydocstyle = "*"
black = "*"
pdbpp = "*"
pyrepl = {git = "https://github.com/pypy/pyrepl"}
setuptools = "*"
[tool.poetry.scripts]
icekube = 'icekube.cli:app'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"