-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (61 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (61 loc) · 1.73 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kc-sdk-python"
version = "3.0.0"
description = "Kvindo Cloud Python SDK — typed client for managing Kvindo Cloud infrastructure (VMs, S3, Kubernetes, load balancers, VPCs, PostgreSQL) via the REST API"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Kvindo" }]
keywords = [
"kvindo",
"kvindo-cloud",
"cloud",
"cloud-api",
"iaas",
"infrastructure",
"infrastructure-as-code",
"sdk",
"api-client",
"rest-api",
"devops",
"vm",
"kubernetes",
"s3",
"object-storage",
"load-balancer",
"vpc",
"postgresql",
]
dependencies = [
"requests",
"marshmallow-dataclass",
"py-ulid",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Internet",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://cloud.kvindo.com"
Repository = "https://github.com/Kvindo/kc-sdk-python"
Documentation = "https://github.com/Kvindo/kc-sdk-python#readme"
"Bug Tracker" = "https://github.com/Kvindo/kc-sdk-python/issues"
[tool.setuptools]
py-modules = ["kc_api"]