METADATA 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. Metadata-Version: 2.1
  2. Name: omegaconf
  3. Version: 2.3.0
  4. Summary: A flexible configuration library
  5. Home-page: https://github.com/omry/omegaconf
  6. Author: Omry Yadan
  7. Author-email: omry@yadan.net
  8. Keywords: yaml configuration config
  9. Classifier: Programming Language :: Python :: 3.6
  10. Classifier: Programming Language :: Python :: 3.7
  11. Classifier: Programming Language :: Python :: 3.8
  12. Classifier: Programming Language :: Python :: 3.9
  13. Classifier: Programming Language :: Python :: 3.10
  14. Classifier: Programming Language :: Python :: 3.11
  15. Classifier: License :: OSI Approved :: BSD License
  16. Classifier: Operating System :: OS Independent
  17. Requires-Python: >=3.6
  18. Description-Content-Type: text/markdown
  19. License-File: LICENSE
  20. Requires-Dist: antlr4-python3-runtime (==4.9.*)
  21. Requires-Dist: PyYAML (>=5.1.0)
  22. Requires-Dist: dataclasses ; python_version == "3.6"
  23. # OmegaConf
  24. | | Description |
  25. | --- | --- |
  26. | Project | [![PyPI version](https://badge.fury.io/py/omegaconf.svg)](https://badge.fury.io/py/omegaconf)[![Downloads](https://pepy.tech/badge/omegaconf/month)](https://pepy.tech/project/omegaconf?versions=1.4.*&versions=2.0.*&versions=2.1.*)![PyPI - Python Version](https://img.shields.io/pypi/pyversions/omegaconf.svg) |
  27. | Code quality| [![CircleCI](https://img.shields.io/circleci/build/github/omry/omegaconf?logo=s&token=5de2f8dc2a0dd78438520575431aa533150806e3)](https://circleci.com/gh/omry/omegaconf)[![Coverage Status](https://coveralls.io/repos/github/omry/omegaconf/badge.svg)](https://coveralls.io/github/omry/omegaconf)[![Total alerts](https://img.shields.io/lgtm/alerts/g/omry/omegaconf.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/omry/omegaconf/alerts/)[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/omry/omegaconf.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/omry/omegaconf/context:python)|
  28. | Docs and support |[![Documentation Status](https://readthedocs.org/projects/omegaconf/badge/?version=2.0_branch)](https://omegaconf.readthedocs.io/en/2.1_branch/)[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/omry/omegaconf/master?filepath=docs%2Fnotebook%2FTutorial.ipynb)|
  29. OmegaConf is a hierarchical configuration system, with support for merging configurations from multiple sources (YAML config files, dataclasses/objects and CLI arguments)
  30. providing a consistent API regardless of how the configuration was created.
  31. ## Releases
  32. ### Stable (2.2)
  33. OmegaConf 2.2 is the current stable version.
  34. * [What's new](https://github.com/omry/omegaconf/releases/tag/v2.2.1)
  35. * [Documentation](https://omegaconf.readthedocs.io/en/2.2_branch/)
  36. * [Source code](https://github.com/omry/omegaconf/tree/2.2_branch)
  37. Install with `pip install --upgrade omegaconf`
  38. ### Previous release (2.1)
  39. OmegaConf 2.1 is the current stable version.
  40. * [What's new](https://github.com/omry/omegaconf/releases/tag/v2.1.1)
  41. * [Documentation](https://omegaconf.readthedocs.io/en/2.1_branch/)
  42. * [Slides](https://docs.google.com/presentation/d/e/2PACX-1vT_UIV7hCnquIbLUm4NnkUpXvPEh33IKiUEvPRF850WKA8opOlZOszjKdZ3tPmf8u7hGNP6HpqS-NT5/pub?start=false&loop=false&delayms=3000)
  43. * [Source code](https://github.com/omry/omegaconf/tree/2.1_branch)
  44. Install with `pip install omegaconf==2.1`
  45. ### Previous release (2.0)
  46. * [What's new](https://github.com/omry/omegaconf/releases/tag/v2.0.0)
  47. * [Documentation](https://omegaconf.readthedocs.io/en/2.0_branch/)
  48. * [Slides](https://docs.google.com/presentation/d/e/2PACX-1vT_UIV7hCnquIbLUm4NnkUpXvPEh33IKiUEvPRF850WKA8opOlZOszjKdZ3tPmf8u7hGNP6HpqS-NT5/pub?start=false&loop=false&delayms=3000)
  49. * [Source code](https://github.com/omry/omegaconf/tree/2.0_branch)
  50. Install with `pip install omegaconf==2.0.6`
  51. ## Live tutorial
  52. Run the live tutorial: [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/omry/omegaconf/master?filepath=docs%2Fnotebook%2FTutorial.ipynb)