airunner-common 6.1.3__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.
- airunner_common-6.1.3/MANIFEST.in +5 -0
- airunner_common-6.1.3/PKG-INFO +782 -0
- airunner_common-6.1.3/README.md +14 -0
- airunner_common-6.1.3/airunner_common/__init__.py +28 -0
- airunner_common-6.1.3/airunner_common/contract_enums.py +398 -0
- airunner_common-6.1.3/airunner_common/dev_build_token.py +121 -0
- airunner_common-6.1.3/airunner_common/get_logger.py +202 -0
- airunner_common-6.1.3/airunner_common/linux_bundle_layout.py +159 -0
- airunner_common-6.1.3/airunner_common/logging_utils.py +406 -0
- airunner_common-6.1.3/airunner_common/package_metadata.py +538 -0
- airunner_common-6.1.3/airunner_common/settings.py +631 -0
- airunner_common-6.1.3/airunner_common/startup_env.py +32 -0
- airunner_common-6.1.3/airunner_common.egg-info/PKG-INFO +782 -0
- airunner_common-6.1.3/airunner_common.egg-info/SOURCES.txt +26 -0
- airunner_common-6.1.3/airunner_common.egg-info/dependency_links.txt +1 -0
- airunner_common-6.1.3/airunner_common.egg-info/requires.txt +2 -0
- airunner_common-6.1.3/airunner_common.egg-info/top_level.txt +1 -0
- airunner_common-6.1.3/setup.cfg +4 -0
- airunner_common-6.1.3/setup.py +32 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# The shared sdist carries its own README so the sdist -> wheel phase of
|
|
2
|
+
# `python -m build` can resolve the long_description (issue #2061). In a
|
|
3
|
+
# checkout, package_metadata.README resolves the repo-root README instead
|
|
4
|
+
# (parents[2] of <repo>/shared/airunner_common/package_metadata.py).
|
|
5
|
+
include README.md
|