trueforge-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.
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: trueforge-sdk
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder package for trueforge-sdk.
|
|
5
|
+
Project-URL: Homepage, https://pypi.org/project/trueforge-sdk/
|
|
6
|
+
Author: Trueforge
|
|
7
|
+
License: MIT
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# trueforge-sdk
|
|
15
|
+
|
|
16
|
+
Placeholder package reserved for the Trueforge SDK.
|
|
17
|
+
|
|
18
|
+
This `0.0.0` release claims the PyPI name. A real SDK will replace it in a later version.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "trueforge-sdk"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Placeholder package for trueforge-sdk."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Trueforge" },
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
19
|
+
]
|
|
20
|
+
dependencies = []
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://pypi.org/project/trueforge-sdk/"
|