-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 841 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 841 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
[project]
name = "ComputePodCommandLineInterface"
version = "0.0.1"
description = "A simple command line interface to interact with a federation of ComputePods."
authors = [
{name = "Stephen Gaito", email = "stephen@perceptisys.co.uk"},
]
dependencies = [
"click",
"pyyaml~=5.4",
"ComputePodPythonUtils @ git+https://github.com/computePods/pythonUtils.git",
"ComputePodInterfaces @ git+https://github.com/computePods/interfaces.git",
"deepdiff~=5.6",
]
requires-python = ">=3.9"
dynamic = ["classifiers"]
license = {text = "Apache-2.0"}
[project.urls]
homepage = "https://github.com/computePods/commandLineInterface"
[project.scripts]
cpcli = "cpcli:cli"
cprsyncctl = "cprsync:ctl"
[project.optional-dependencies]
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[tool]
[tool.pdm]