textron-logging 1.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,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: textron-logging
3
+ Version: 1.0.1
4
+ Summary: Minimal uniform logging for Textron apps (console + optional Azure Monitor)
5
+ Author: Your Name
6
+ Requires-Python: >=3.8
7
+ Provides-Extra: azure
8
+ Requires-Dist: opentelemetry-sdk>=1.24.0; extra == "azure"
9
+ Requires-Dist: azure-monitor-opentelemetry-exporter>=1.0.0; extra == "azure"
10
+ Dynamic: author
11
+ Dynamic: provides-extra
12
+ Dynamic: requires-python
13
+ Dynamic: summary
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,17 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="textron-logging",
5
+ version="1.0.1",
6
+ description="Minimal uniform logging for Textron apps (console + optional Azure Monitor)",
7
+ author="Your Name",
8
+ packages=find_packages(),
9
+ python_requires=">=3.8",
10
+ install_requires=[], # stdlib only; Azure is optional
11
+ extras_require={
12
+ "azure": [
13
+ "opentelemetry-sdk>=1.24.0",
14
+ "azure-monitor-opentelemetry-exporter>=1.0.0"
15
+ ]
16
+ },
17
+ )
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: textron-logging
3
+ Version: 1.0.1
4
+ Summary: Minimal uniform logging for Textron apps (console + optional Azure Monitor)
5
+ Author: Your Name
6
+ Requires-Python: >=3.8
7
+ Provides-Extra: azure
8
+ Requires-Dist: opentelemetry-sdk>=1.24.0; extra == "azure"
9
+ Requires-Dist: azure-monitor-opentelemetry-exporter>=1.0.0; extra == "azure"
10
+ Dynamic: author
11
+ Dynamic: provides-extra
12
+ Dynamic: requires-python
13
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ textron_logging.egg-info/PKG-INFO
3
+ textron_logging.egg-info/SOURCES.txt
4
+ textron_logging.egg-info/dependency_links.txt
5
+ textron_logging.egg-info/requires.txt
6
+ textron_logging.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+
2
+ [azure]
3
+ opentelemetry-sdk>=1.24.0
4
+ azure-monitor-opentelemetry-exporter>=1.0.0