-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 971 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "valdi"
version = "0.2.5"
description = "A command-line utility for managing VALDI cloud resources"
authors = [{name = "VALDI", email="[email protected]"}]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
keywords = ["valdi", "gpu", "cloud", "cli", "storage", "volumes"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology"
]
dependencies = [
"certifi >= 2023.11.17",
"charset-normalizer == 3.3.2",
"idna >= 3.6",
"PyJWT >= 2.8.0",
"requests >= 2.31.0",
"urllib3 >= 2.1.0"
]
[project.urls]
Homepage = "https://valdi.ai"
Documentation = "https://docs.valdi.ai"
Repository = "https://github.com/valdi-labs/valdi-cli"
[project.scripts]
valdi = "valdi.entrypoint:main"