-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
43 lines (37 loc) · 1.08 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 = "transpire"
version = "0.2.0"
description = "the OCF Kubernetes helper library"
authors = ["Nikhil Jha <njha@ocf.berkeley.edu>"]
license = "Apache-2.0"
[tool.poetry.scripts]
transpire = 'transpire.__main__:cli'
[tool.poetry.dependencies]
python = "^3.11"
PyYAML = "^6.0" # make sure to bump types-PyYAML as well
kubernetes = "^25.3.0" # make sure to bump kubernetes-typed as well
click = "^8.1.3"
loguru = "^0.7.2"
pydantic = "^2.7.0"
hvac = "^1.0.2"
requests = "^2.28.2"
tomlkit = "^0.12.4"
[tool.poetry.group.dev.dependencies]
mypy = "^1.2.0"
black = { version = "^22.12.0", allow-prereleases = true }
types-PyYAML = "^6.0.4"
kubernetes-typed = { git = "https://github.com/nikhiljha/kubernetes-typed.git", tag = "v25.3.0" }
types-requests = "^2.28.2"
flake8 = "^6.0.0"
isort = "^5.11.4"
pre-commit = "^2.21.0"
pytest = "^7.2.1"
coverage = { version = "^6.3.2", extras = ["toml"] }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.coverage.run]
source = ["transpire"]
branch = true