-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
35 lines (32 loc) · 997 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
[tool.poetry]
name = "drove-cli"
version = "0.0.2"
description = "Drove Command Line Interface"
authors = ["Santanu Sinha <santanu.sinha@gmail.com>"]
maintainers = [
"Santanu Sinha <santanu.sinha@gmail.com>",
"Santanu Sinha <santanu@phonepe.com>",
]
readme = "README.md"
packages = [{include = "plugins"}, {include = "*.py"}]
license = "Apache-2.0"
repository = "https://github.com/PhonePe/drove-cli"
keywords = ["container", "docker", "podman", "distributed-systems", "container-orchestrator"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: System :: Clustering",
"Topic :: System :: Distributed Computing"
]
[tool.poetry.dependencies]
python = "^3.7"
tabulate = "^0.9.0"
urllib3 = "^2.0.7"
requests = "^2.31.0"
tenacity = "^8.2.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
drove = "drove:run"