-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 794 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 794 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dockmancli"
version = "1.1.0"
authors = [
{ name="Alberto Rosa" }
]
description = "Docker Administrator via CLI"
readme = "README.md"
requires-python = ">=3.0"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
dependencies = [
"inquirerpy==0.3.4",
"docker>=7.0.0",
"PyYAML>=6.0.1",
"python-dateutil==2.8.2"
]
[tool.setuptools.packages.find]
exclude = ["images"]
[project.scripts]
dockmancli = "dockmancli.dockmancli.dockmancli:main"
[project.urls]
Homepage = "https://github.com/MDKPredator/dockmancli"