trustkit 0.0.1__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,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: trustkit
3
+ Version: 0.0.1
4
+ Summary: TrustKIt python library
5
+ Author: Brandad
6
+ License-Expression: ISC
7
+ Project-URL: Homepage, https://brandad.de
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+
13
+ # TrustKIt
14
+
15
+ Work in progress.
@@ -0,0 +1,3 @@
1
+ # TrustKIt
2
+
3
+ Work in progress.
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "trustkit"
7
+ version = "0.0.1"
8
+ authors = [
9
+ { name="Brandad" }, # { name="Brandad", email="xxx@brandad.de" },
10
+ ]
11
+ description = "TrustKIt python library"
12
+ readme = "README.md"
13
+ requires-python = ">=3.8"
14
+ license = "ISC"
15
+ dependencies = [
16
+ # Hier kommen später Abhängigkeiten rein, ähnlich wie "dependencies" in package.json
17
+ # z.B. "requests>=2.0.0"
18
+ ]
19
+ classifiers = [
20
+ "Programming Language :: Python :: 3",
21
+ "Operating System :: OS Independent",
22
+ ]
23
+
24
+ [project.urls]
25
+ "Homepage" = "https://brandad.de"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+
2
+ def test():
3
+ return "Hello, World!"
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: trustkit
3
+ Version: 0.0.1
4
+ Summary: TrustKIt python library
5
+ Author: Brandad
6
+ License-Expression: ISC
7
+ Project-URL: Homepage, https://brandad.de
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+
13
+ # TrustKIt
14
+
15
+ Work in progress.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/trustkit/__init__.py
4
+ src/trustkit.egg-info/PKG-INFO
5
+ src/trustkit.egg-info/SOURCES.txt
6
+ src/trustkit.egg-info/dependency_links.txt
7
+ src/trustkit.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ trustkit