|
| 1 | +Metadata-Version: 2.1 |
| 2 | +Name: jaraco.collections |
| 3 | +Version: 5.1.0 |
| 4 | +Summary: Collection objects similar to those in stdlib by jaraco |
| 5 | +Author-email: "Jason R. Coombs" < [email protected]> |
| 6 | +Project-URL: Source, https://github.com/jaraco/jaraco.collections |
| 7 | +Classifier: Development Status :: 5 - Production/Stable |
| 8 | +Classifier: Intended Audience :: Developers |
| 9 | +Classifier: License :: OSI Approved :: MIT License |
| 10 | +Classifier: Programming Language :: Python :: 3 |
| 11 | +Classifier: Programming Language :: Python :: 3 :: Only |
| 12 | +Requires-Python: >=3.8 |
| 13 | +Description-Content-Type: text/x-rst |
| 14 | +License-File: LICENSE |
| 15 | +Requires-Dist: jaraco.text |
| 16 | +Provides-Extra: check |
| 17 | +Requires-Dist: pytest-checkdocs >=2.4 ; extra == 'check' |
| 18 | +Requires-Dist: pytest-ruff >=0.2.1 ; (sys_platform != "cygwin") and extra == 'check' |
| 19 | +Provides-Extra: cover |
| 20 | +Requires-Dist: pytest-cov ; extra == 'cover' |
| 21 | +Provides-Extra: doc |
| 22 | +Requires-Dist: sphinx >=3.5 ; extra == 'doc' |
| 23 | +Requires-Dist: jaraco.packaging >=9.3 ; extra == 'doc' |
| 24 | +Requires-Dist: rst.linker >=1.9 ; extra == 'doc' |
| 25 | +Requires-Dist: furo ; extra == 'doc' |
| 26 | +Requires-Dist: sphinx-lint ; extra == 'doc' |
| 27 | +Requires-Dist: jaraco.tidelift >=1.4 ; extra == 'doc' |
| 28 | +Provides-Extra: enabler |
| 29 | +Requires-Dist: pytest-enabler >=2.2 ; extra == 'enabler' |
| 30 | +Provides-Extra: test |
| 31 | +Requires-Dist: pytest !=8.1.*,>=6 ; extra == 'test' |
| 32 | +Provides-Extra: type |
| 33 | +Requires-Dist: pytest-mypy ; extra == 'type' |
| 34 | + |
| 35 | +.. image:: https://img.shields.io/pypi/v/jaraco.collections.svg |
| 36 | + :target: https://pypi.org/project/jaraco.collections |
| 37 | + |
| 38 | +.. image:: https://img.shields.io/pypi/pyversions/jaraco.collections.svg |
| 39 | + |
| 40 | +.. image:: https://github.com/jaraco/jaraco.collections/actions/workflows/main.yml/badge.svg |
| 41 | + :target: https://github.com/jaraco/jaraco.collections/actions?query=workflow%3A%22tests%22 |
| 42 | + :alt: tests |
| 43 | + |
| 44 | +.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json |
| 45 | + :target: https://github.com/astral-sh/ruff |
| 46 | + :alt: Ruff |
| 47 | + |
| 48 | +.. image:: https://readthedocs.org/projects/jaracocollections/badge/?version=latest |
| 49 | + :target: https://jaracocollections.readthedocs.io/en/latest/?badge=latest |
| 50 | + |
| 51 | +.. image:: https://img.shields.io/badge/skeleton-2024-informational |
| 52 | + :target: https://blog.jaraco.com/skeleton |
| 53 | + |
| 54 | +.. image:: https://tidelift.com/badges/package/pypi/jaraco.collections |
| 55 | + :target: https://tidelift.com/subscription/pkg/pypi-jaraco.collections?utm_source=pypi-jaraco.collections&utm_medium=readme |
| 56 | + |
| 57 | +Models and classes to supplement the stdlib 'collections' module. |
| 58 | + |
| 59 | +See the docs, linked above, for descriptions and usage examples. |
| 60 | + |
| 61 | +Highlights include: |
| 62 | + |
| 63 | +- RangeMap: A mapping that accepts a range of values for keys. |
| 64 | +- Projection: A subset over an existing mapping. |
| 65 | +- KeyTransformingDict: Generalized mapping with keys transformed by a function. |
| 66 | +- FoldedCaseKeyedDict: A dict whose string keys are case-insensitive. |
| 67 | +- BijectiveMap: A map where keys map to values and values back to their keys. |
| 68 | +- ItemsAsAttributes: A mapping mix-in exposing items as attributes. |
| 69 | +- IdentityOverrideMap: A map whose keys map by default to themselves unless overridden. |
| 70 | +- FrozenDict: A hashable, immutable map. |
| 71 | +- Enumeration: An object whose keys are enumerated. |
| 72 | +- Everything: A container that contains all things. |
| 73 | +- Least, Greatest: Objects that are always less than or greater than any other. |
| 74 | +- pop_all: Return all items from the mutable sequence and remove them from that sequence. |
| 75 | +- DictStack: A stack of dicts, great for sharing scopes. |
| 76 | +- WeightedLookup: A specialized RangeMap for selecting an item by weights. |
| 77 | + |
| 78 | +For Enterprise |
| 79 | +============== |
| 80 | + |
| 81 | +Available as part of the Tidelift Subscription. |
| 82 | + |
| 83 | +This project and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use. |
| 84 | + |
| 85 | +`Learn more <https://tidelift.com/subscription/pkg/pypi-jaraco.collections?utm_source=pypi-jaraco.collections&utm_medium=referral&utm_campaign=github>`_. |
0 commit comments