comconnect 0.1.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.
- comconnect-0.1.1/LICENSE +1 -0
- comconnect-0.1.1/PKG-INFO +17 -0
- comconnect-0.1.1/README.md +1 -0
- comconnect-0.1.1/pyproject.toml +26 -0
- comconnect-0.1.1/setup.cfg +4 -0
- comconnect-0.1.1/src/comconnect/__init__.py +0 -0
- comconnect-0.1.1/src/comconnect/__main__.py +0 -0
- comconnect-0.1.1/src/comconnect.egg-info/PKG-INFO +17 -0
- comconnect-0.1.1/src/comconnect.egg-info/SOURCES.txt +10 -0
- comconnect-0.1.1/src/comconnect.egg-info/dependency_links.txt +1 -0
- comconnect-0.1.1/src/comconnect.egg-info/requires.txt +1 -0
- comconnect-0.1.1/src/comconnect.egg-info/top_level.txt +1 -0
comconnect-0.1.1/LICENSE
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
TODO
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: comconnect
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A small example package
|
|
5
|
+
Author-email: Robert Degen <turbodev@mailbox.org>
|
|
6
|
+
Project-URL: Homepage, https://github.com/turbo-bert
|
|
7
|
+
Project-URL: Issues, https://github.com/turbo-bert
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: reportlab
|
|
15
|
+
Dynamic: license-file
|
|
16
|
+
|
|
17
|
+
TODO
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
TODO
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "comconnect"
|
|
7
|
+
version = "0.1.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="Robert Degen", email="turbodev@mailbox.org" },
|
|
10
|
+
]
|
|
11
|
+
description = "A small example package"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
]
|
|
19
|
+
dependencies = [
|
|
20
|
+
"reportlab"
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://github.com/turbo-bert"
|
|
25
|
+
Issues = "https://github.com/turbo-bert"
|
|
26
|
+
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: comconnect
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A small example package
|
|
5
|
+
Author-email: Robert Degen <turbodev@mailbox.org>
|
|
6
|
+
Project-URL: Homepage, https://github.com/turbo-bert
|
|
7
|
+
Project-URL: Issues, https://github.com/turbo-bert
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: reportlab
|
|
15
|
+
Dynamic: license-file
|
|
16
|
+
|
|
17
|
+
TODO
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/comconnect/__init__.py
|
|
5
|
+
src/comconnect/__main__.py
|
|
6
|
+
src/comconnect.egg-info/PKG-INFO
|
|
7
|
+
src/comconnect.egg-info/SOURCES.txt
|
|
8
|
+
src/comconnect.egg-info/dependency_links.txt
|
|
9
|
+
src/comconnect.egg-info/requires.txt
|
|
10
|
+
src/comconnect.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
reportlab
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
comconnect
|