ncae-sdk 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ncae_sdk-0.0.0/PKG-INFO +13 -0
- ncae_sdk-0.0.0/README.md +4 -0
- ncae_sdk-0.0.0/pyproject.toml +13 -0
- ncae_sdk-0.0.0/src/ncae_sdk/__init__.py +0 -0
ncae_sdk-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: ncae-sdk
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Python SDK for Netcloud Automation Engine (NCAE)
|
|
5
|
+
Author: Netcloud AG
|
|
6
|
+
Author-email: Netcloud AG <ncae@netcloud.ch>
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# NCAE SDK for Python
|
|
11
|
+
|
|
12
|
+
This package will be available soon on PyPI and is going to be the official SDK for the Netcloud Automation Engine,
|
|
13
|
+
abbreviated as NCAE.
|
ncae_sdk-0.0.0/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "ncae-sdk"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Python SDK for Netcloud Automation Engine (NCAE)"
|
|
5
|
+
requires-python = ">=3.9"
|
|
6
|
+
readme = "README.md"
|
|
7
|
+
authors = [
|
|
8
|
+
{ name = "Netcloud AG", email = "ncae@netcloud.ch" },
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
[build-system]
|
|
12
|
+
requires = ["uv_build>=0.6.17,<0.7"]
|
|
13
|
+
build-backend = "uv_build"
|
|
File without changes
|