├── .flake8 ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── lint.yml │ ├── release.yml │ └── zizmor.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── pyproject.toml ├── src └── ordered_enum │ ├── __init__.py │ ├── ordered_enum.py │ └── py.typed ├── test ├── .coveragerc └── test_ordered_enum.py └── uv.lock /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 100 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/.github/workflows/zizmor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/ordered_enum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/src/ordered_enum/__init__.py -------------------------------------------------------------------------------- /src/ordered_enum/ordered_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/src/ordered_enum/ordered_enum.py -------------------------------------------------------------------------------- /src/ordered_enum/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = 3 | ordered_enum 4 | -------------------------------------------------------------------------------- /test/test_ordered_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/test/test_ordered_enum.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woodruffw/ordered_enum/HEAD/uv.lock --------------------------------------------------------------------------------