pax_global_header00006660000000000000000000000064152035407230014513gustar00rootroot0000000000000052 comment=c0c963cc3383563312ce021e7c28ea49540ac59b sphinx-toolbox-dict2css-c0c963c/000077500000000000000000000000001520354072300166405ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/.bumpversion.cfg000066400000000000000000000006121520354072300217470ustar00rootroot00000000000000[bumpversion] current_version = 0.6.0 commit = True tag = True [bumpversion:file:repo_helper.yml] [bumpversion:file:README.rst] [bumpversion:file:doc-source/index.rst] [bumpversion:file:dict2css/__init__.py] search = : str = "{current_version}" replace = : str = "{new_version}" [bumpversion:file:pyproject.toml] search = version = "{current_version}" replace = version = "{new_version}" sphinx-toolbox-dict2css-c0c963c/.github/000077500000000000000000000000001520354072300202005ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/.github/ISSUE_TEMPLATE/000077500000000000000000000000001520354072300223635ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/.github/ISSUE_TEMPLATE/bug_report.md000066400000000000000000000022311520354072300250530ustar00rootroot00000000000000--- name: Bug report about: Create a report to help us improve labels: bug assignees: domdfcoding --- ## Description ## Steps to Reproduce 1. 2. 3. ## Actual result: ## Expected result: ## Reproduces how often: ## Version * Operating System: * Python: * dict2css: ## Installation source ## Other Additional Information: sphinx-toolbox-dict2css-c0c963c/.github/ISSUE_TEMPLATE/feature_request.md000066400000000000000000000012141520354072300261060ustar00rootroot00000000000000--- name: Feature request about: Suggest an idea for this project labels: "enhancement" assignees: domdfcoding --- ## Description ## Version * Operating System: * Python: * dict2css: ## Other Additional Information: sphinx-toolbox-dict2css-c0c963c/.github/auto_assign.yml000066400000000000000000000003471520354072300232430ustar00rootroot00000000000000# This file is managed by 'repo_helper'. Don't edit it directly. --- addReviewers: true addAssignees: true reviewers: - domdfcoding numberOfReviewers: 0 # more settings at https://github.com/marketplace/actions/auto-assign-action sphinx-toolbox-dict2css-c0c963c/.github/dependabot.yml000066400000000000000000000003351520354072300230310ustar00rootroot00000000000000# This file is managed by 'repo_helper'. Don't edit it directly. --- version: 2 updates: - package-ecosystem: pip directory: / schedule: interval: weekly open-pull-requests-limit: 0 reviewers: - domdfcoding sphinx-toolbox-dict2css-c0c963c/.github/milestones.py000077500000000000000000000012401520354072300227340ustar00rootroot00000000000000#!/usr/bin/env python # stdlib import os import sys # 3rd party from github3 import GitHub from github3.repos import Repository from packaging.version import InvalidVersion, Version latest_tag = os.environ["GITHUB_REF_NAME"] try: current_version = Version(latest_tag) except InvalidVersion: sys.exit() gh: GitHub = GitHub(token=os.environ["GITHUB_TOKEN"]) repo: Repository = gh.repository(*os.environ["GITHUB_REPOSITORY"].split('/', 1)) for milestone in repo.milestones(state="open"): try: milestone_version = Version(milestone.title) except InvalidVersion: continue if milestone_version == current_version: sys.exit(not milestone.update(state="closed")) sphinx-toolbox-dict2css-c0c963c/.github/stale.yml000066400000000000000000000040211520354072300220300ustar00rootroot00000000000000# This file is managed by 'repo_helper'. Don't edit it directly. # Configuration for probot-stale - https://github.com/probot/stale --- # Number of days of inactivity before an Issue or Pull Request becomes stale daysUntilStale: 180 # Number of days of inactivity before an Issue or Pull Request with the stale label is closed. # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. daysUntilClose: false # Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled) onlyLabels: [] # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable exemptLabels: - pinned - security - "[Status] Maybe Later" # Set to true to ignore issues in a project (defaults to false) exemptProjects: false # Set to true to ignore issues in a milestone (defaults to false) exemptMilestones: false # Set to true to ignore issues with an assignee (defaults to false) exemptAssignees: false # Label to use when marking as stale staleLabel: stale # Comment to post when marking as stale. Set to `false` to disable markComment: false # This issue has been automatically marked as stale because it has not had # recent activity. It will be closed if no further activity occurs. Thank you # for your contributions. # Comment to post when removing the stale label. # unmarkComment: > # Your comment here. # Comment to post when closing a stale Issue or Pull Request. # closeComment: > # Your comment here. # Limit the number of actions per hour, from 1-30. Default is 30 limitPerRun: 30 # Limit to only `issues` or `pulls` # only: issues # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': # pulls: # daysUntilStale: 30 # markComment: > # This pull request has been automatically marked as stale because it has not had # recent activity. It will be closed if no further activity occurs. Thank you # for your contributions. # issues: # exemptLabels: # - confirmed sphinx-toolbox-dict2css-c0c963c/.github/workflows/000077500000000000000000000000001520354072300222355ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/.github/workflows/docs_test_action.yml000066400000000000000000000015641520354072300263120ustar00rootroot00000000000000# This file is managed by 'repo_helper'. Don't edit it directly. --- name: "Docs Check" on: push: branches-ignore: - 'repo-helper-update' - 'pre-commit-ci-update-config' - 'imgbot' pull_request: jobs: docs: permissions: contents: read runs-on: ubuntu-latest steps: - name: Checkout 🛎️ uses: "actions/checkout@v6" - name: Check for changed files uses: dorny/paths-filter@v4 id: changes with: list-files: "json" filters: | code: - '!tests/**' - name: Install and Build 🔧 uses: sphinx-toolbox/sphinx-action@sphinx-3.3.1-py39 if: steps.changes.outputs.code == 'true' with: pre-build-command: python -m pip install tox docs-folder: "doc-source/" build-command: "tox -e docs -- -W " sphinx-toolbox-dict2css-c0c963c/.github/workflows/flake8.yml000066400000000000000000000023451520354072300241360ustar00rootroot00000000000000# This file is managed by 'repo_helper'. Don't edit it directly. --- name: Flake8 on: push: branches-ignore: - 'repo-helper-update' - 'pre-commit-ci-update-config' - 'imgbot' pull_request: jobs: Run: name: "Flake8" permissions: contents: read runs-on: "ubuntu-22.04" steps: - name: Checkout 🛎️ uses: "actions/checkout@v6" - name: Check for changed files uses: dorny/paths-filter@v4 id: changes with: list-files: "json" filters: | code: - '!(doc-source/**|CONTRIBUTING.rst|.imgbotconfig|.pre-commit-config.yaml|.pylintrc|.readthedocs.yml)' - name: Setup Python 🐍 if: steps.changes.outputs.code == 'true' uses: "actions/setup-python@v6" with: python-version: "3.9" - name: Install dependencies 🔧 if: steps.changes.outputs.code == 'true' run: | python -VV python -m site python -m pip install --upgrade pip setuptools wheel python -m pip install tox~=3.0 - name: "Run Flake8" if: steps.changes.outputs.code == 'true' run: "python -m tox -e lint -s false -- --format github" sphinx-toolbox-dict2css-c0c963c/.github/workflows/mypy.yml000066400000000000000000000024571520354072300237660ustar00rootroot00000000000000# This file is managed by 'repo_helper'. Don't edit it directly. --- name: mypy on: push: branches-ignore: - 'repo-helper-update' - 'pre-commit-ci-update-config' - 'imgbot' pull_request: jobs: Run: permissions: contents: read name: "mypy / ${{ matrix.os }}" runs-on: ${{ matrix.os }} strategy: matrix: os: ['ubuntu-22.04', 'windows-2022'] fail-fast: false steps: - name: Checkout 🛎️ uses: "actions/checkout@v6" - name: Check for changed files uses: dorny/paths-filter@v4 id: changes with: list-files: "json" filters: | code: - '!(doc-source/**|CONTRIBUTING.rst|.imgbotconfig|.pre-commit-config.yaml|.pylintrc|.readthedocs.yml)' - name: Setup Python 🐍 if: steps.changes.outputs.code == 'true' uses: "actions/setup-python@v6" with: python-version: "3.9" - name: Install dependencies 🔧 run: | python -VV python -m site python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0 - name: "Run mypy" if: steps.changes.outputs.code == 'true' run: "python -m tox -e mypy -s false" sphinx-toolbox-dict2css-c0c963c/.github/workflows/octocheese.yml000066400000000000000000000006621520354072300251050ustar00rootroot00000000000000# This file is managed by 'repo_helper'. Don't edit it directly. --- name: "GitHub Releases" on: schedule: - cron: 0 12 * * * jobs: Run: permissions: contents: write runs-on: ubuntu-latest steps: - uses: domdfcoding/octocheese@master with: pypi_name: "dict2css" env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} if: startsWith(github.ref, 'refs/tags/') != true sphinx-toolbox-dict2css-c0c963c/.github/workflows/python_ci.yml000066400000000000000000000052571520354072300247650ustar00rootroot00000000000000# This file is managed by 'repo_helper'. Don't edit it directly. --- name: Windows on: push: branches-ignore: - 'repo-helper-update' - 'pre-commit-ci-update-config' - 'imgbot' pull_request: jobs: tests: permissions: actions: write contents: read name: "windows-2022 / Python ${{ matrix.config.python-version }}" runs-on: "windows-2022" continue-on-error: ${{ matrix.config.experimental }} env: USING_COVERAGE: '3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.8,pypy-3.9' strategy: fail-fast: False matrix: config: - {python-version: "3.8", testenvs: "py38,build", experimental: False} - {python-version: "3.9", testenvs: "py39,build", experimental: False} - {python-version: "3.10", testenvs: "py310,build", experimental: False} - {python-version: "3.11", testenvs: "py311,build", experimental: False} - {python-version: "3.12", testenvs: "py312,build", experimental: False} - {python-version: "3.13", testenvs: "py313,build", experimental: False} - {python-version: "pypy-3.8", testenvs: "pypy38", experimental: False} - {python-version: "pypy-3.9-v7.3.16", testenvs: "pypy39", experimental: True} steps: - name: Checkout 🛎️ uses: "actions/checkout@v6" - name: Check for changed files if: startsWith(github.ref, 'refs/tags/') != true uses: dorny/paths-filter@v4 id: changes with: list-files: "json" filters: | code: - '!(doc-source/**|CONTRIBUTING.rst|.imgbotconfig|.pre-commit-config.yaml|.pylintrc|.readthedocs.yml)' - name: Setup Python 🐍 id: setup-python if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }} uses: "actions/setup-python@v6" with: python-version: "${{ matrix.config.python-version }}" - name: Install dependencies 🔧 if: steps.setup-python.outcome == 'success' run: | python -VV python -m site python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0 - name: "Run Tests for Python ${{ matrix.config.python-version }}" if: steps.setup-python.outcome == 'success' run: python -m tox -e "${{ matrix.config.testenvs }}" -s false - name: "Upload Coverage 🚀" uses: actions/upload-artifact@v4 if: ${{ always() && steps.setup-python.outcome == 'success' }} with: name: "coverage-${{ matrix.config.python-version }}" path: .coverage include-hidden-files: true sphinx-toolbox-dict2css-c0c963c/.github/workflows/python_ci_linux.yml000066400000000000000000000127251520354072300262020ustar00rootroot00000000000000# This file is managed by 'repo_helper'. Don't edit it directly. --- name: Linux on: push: branches-ignore: - 'repo-helper-update' - 'pre-commit-ci-update-config' - 'imgbot' tags: - '*' pull_request: jobs: tests: permissions: actions: write contents: read name: "ubuntu-22.04 / Python ${{ matrix.config.python-version }}" runs-on: "ubuntu-22.04" continue-on-error: ${{ matrix.config.experimental }} env: USING_COVERAGE: '3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.8,pypy-3.9' strategy: fail-fast: False matrix: config: - {python-version: "3.8", testenvs: "py38,build", experimental: False} - {python-version: "3.9", testenvs: "py39,build", experimental: False} - {python-version: "3.10", testenvs: "py310,build", experimental: False} - {python-version: "3.11", testenvs: "py311,build", experimental: False} - {python-version: "3.12", testenvs: "py312,build", experimental: False} - {python-version: "3.13", testenvs: "py313,build", experimental: False} - {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False} - {python-version: "pypy-3.9", testenvs: "pypy39", experimental: True} steps: - name: Checkout 🛎️ uses: "actions/checkout@v6" - name: Check for changed files if: startsWith(github.ref, 'refs/tags/') != true uses: dorny/paths-filter@v4 id: changes with: list-files: "json" filters: | code: - '!(doc-source/**|CONTRIBUTING.rst|.imgbotconfig|.pre-commit-config.yaml|.pylintrc|.readthedocs.yml)' - name: Setup Python 🐍 id: setup-python if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }} uses: "actions/setup-python@v6" with: python-version: "${{ matrix.config.python-version }}" - name: Install dependencies 🔧 if: steps.setup-python.outcome == 'success' run: | python -VV python -m site python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0 python -m pip install --upgrade coverage_pyver_pragma - name: "Run Tests for Python ${{ matrix.config.python-version }}" if: steps.setup-python.outcome == 'success' run: python -m tox -e "${{ matrix.config.testenvs }}" -s false - name: "Upload Coverage 🚀" uses: actions/upload-artifact@v4 if: ${{ always() && steps.setup-python.outcome == 'success' }} with: name: "coverage-${{ matrix.config.python-version }}" path: .coverage include-hidden-files: true Coverage: needs: tests permissions: actions: write contents: read runs-on: "ubuntu-22.04" steps: - name: Checkout 🛎️ uses: "actions/checkout@v6" - name: Setup Python 🐍 uses: "actions/setup-python@v6" with: python-version: 3.8 - name: Install dependencies 🔧 run: | python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade "coveralls>=3.0.0" coverage_pyver_pragma - name: "Download Coverage 🪂" uses: actions/download-artifact@v4 with: path: coverage - name: Display structure of downloaded files id: show run: ls -R working-directory: coverage continue-on-error: true - name: Combine Coverage 👷 if: ${{ steps.show.outcome != 'failure' }} run: | shopt -s globstar python -m coverage combine coverage/**/.coverage - name: "Upload Combined Coverage Artefact 🚀" if: ${{ steps.show.outcome != 'failure' }} uses: actions/upload-artifact@v4 with: name: "combined-coverage" path: .coverage include-hidden-files: true - name: "Upload Combined Coverage to Coveralls" if: ${{ steps.show.outcome != 'failure' }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | coveralls --service=github Deploy: needs: tests permissions: actions: write issues: write contents: read runs-on: "ubuntu-22.04" steps: - name: Checkout 🛎️ uses: "actions/checkout@v6" if: startsWith(github.ref, 'refs/tags/') - name: Setup Python 🐍 uses: "actions/setup-python@v6" if: startsWith(github.ref, 'refs/tags/') with: python-version: 3.8 - name: Install dependencies 🔧 if: startsWith(github.ref, 'refs/tags/') run: | python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade tox~=3.0 - name: Build distributions 📦 if: startsWith(github.ref, 'refs/tags/') run: | tox -e build - name: Upload distribution to PyPI 🚀 if: startsWith(github.ref, 'refs/tags/') uses: pypa/gh-action-pypi-publish@v1.13.0 with: user: __token__ password: ${{ secrets.PYPI_TOKEN }} skip-existing: true - name: Close milestone 🚪 if: startsWith(github.ref, 'refs/tags/') run: | python -m pip install --upgrade github3.py packaging python .github/milestones.py env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} sphinx-toolbox-dict2css-c0c963c/.github/workflows/python_ci_macos.yml000066400000000000000000000055051520354072300261430ustar00rootroot00000000000000# This file is managed by 'repo_helper'. Don't edit it directly. --- name: macOS on: push: branches-ignore: - 'repo-helper-update' - 'pre-commit-ci-update-config' - 'imgbot' pull_request: jobs: tests: permissions: actions: write contents: read name: "macos-${{ matrix.config.os-ver }} / Python ${{ matrix.config.python-version }}" runs-on: "macos-${{ matrix.config.os-ver }}" continue-on-error: ${{ matrix.config.experimental }} env: USING_COVERAGE: '3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.8,pypy-3.9' strategy: fail-fast: False matrix: config: - {python-version: "3.8", os-ver: "14", testenvs: "py38,build", experimental: False} - {python-version: "3.9", os-ver: "14", testenvs: "py39,build", experimental: False} - {python-version: "3.10", os-ver: "14", testenvs: "py310,build", experimental: False} - {python-version: "3.11", os-ver: "14", testenvs: "py311,build", experimental: False} - {python-version: "3.12", os-ver: "14", testenvs: "py312,build", experimental: False} - {python-version: "3.13", os-ver: "14", testenvs: "py313,build", experimental: False} - {python-version: "pypy-3.8", os-ver: "14", testenvs: "pypy38,build", experimental: False} - {python-version: "pypy-3.9", os-ver: "14", testenvs: "pypy39", experimental: True} steps: - name: Checkout 🛎️ uses: "actions/checkout@v6" - name: Check for changed files if: startsWith(github.ref, 'refs/tags/') != true uses: dorny/paths-filter@v4 id: changes with: list-files: "json" filters: | code: - '!(doc-source/**|CONTRIBUTING.rst|.imgbotconfig|.pre-commit-config.yaml|.pylintrc|.readthedocs.yml)' - name: Setup Python 🐍 id: setup-python if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }} uses: "actions/setup-python@v6" with: python-version: "${{ matrix.config.python-version }}" - name: Install dependencies 🔧 if: steps.setup-python.outcome == 'success' run: | python -VV python -m site python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0 - name: "Run Tests for Python ${{ matrix.config.python-version }}" if: steps.setup-python.outcome == 'success' run: python -m tox -e "${{ matrix.config.testenvs }}" -s false - name: "Upload Coverage 🚀" uses: actions/upload-artifact@v4 if: ${{ always() && steps.setup-python.outcome == 'success' }} with: name: "coverage-${{ matrix.config.python-version }}" path: .coverage include-hidden-files: true sphinx-toolbox-dict2css-c0c963c/.gitignore000066400000000000000000000017761520354072300206430ustar00rootroot00000000000000# This file is managed by 'repo_helper'. Don't edit it directly. __pycache__/ *.py[cod] *$py.class *.so .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg *.egg* *.manifest *.spec pip-log.txt pip-delete-this-directory.txt htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ .pytest_cache/ cover/ *.mo *.pot *.log local_settings.py db.sqlite3 instance/ .webassets-cache .scrapy docs/_build/ doc/build target/ .ipynb_checkpoints celerybeat-schedule celerybeat.pid *.sage.py .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ .spyderproject .spyproject .ropeproject /site .mypy_cache/ .dmypy.json dmypy.json *.iml *.ipr cmake-build-*/ .idea/**/mongoSettings.xml *.iws out/ atlassian-ide-plugin.xml com_crashlytics_export_strings.xml crashlytics.properties crashlytics-build.properties fabric.properties .idea build **/__pycache__ **/conda __pypackages__/ profile_default/ ipython_config.py Pipfile.lock .pyre/ sphinx-toolbox-dict2css-c0c963c/.imgbotconfig000066400000000000000000000001151520354072300213050ustar00rootroot00000000000000{ "schedule": "weekly", "ignoredFiles": [ "**/*.svg" ] } sphinx-toolbox-dict2css-c0c963c/.pre-commit-config.yaml000066400000000000000000000046551520354072300231330ustar00rootroot00000000000000# This file is managed by 'repo_helper'. Don't edit it directly. --- exclude: ^$ ci: autoupdate_schedule: quarterly skip: [taplo-lint] repos: - repo: https://github.com/repo-helper/pyproject-parser rev: v0.14.0 hooks: - id: reformat-pyproject - repo: https://github.com/pre-commit/pre-commit-hooks rev: v3.4.0 hooks: - id: check-added-large-files - id: check-ast - id: fix-byte-order-marker - id: check-case-conflict - id: check-executables-have-shebangs - id: check-json - id: check-yaml - id: check-merge-conflict - id: check-symlinks - id: check-vcs-permalinks - id: detect-private-key - id: trailing-whitespace - id: mixed-line-ending - id: end-of-file-fixer - repo: https://github.com/domdfcoding/taplo-pre-commit rev: v0.10.0 hooks: - id: taplo-lint args: [] - repo: https://github.com/domdfcoding/pre-commit-hooks rev: v0.7.0 hooks: - id: requirements-txt-sorter args: - --allow-git - id: check-docstring-first exclude: ^(doc-source/conf|__pkginfo__|setup|tests/.*)\.py$ - id: bind-requirements args: - --python-min - '3.8' - repo: https://github.com/python-formate/flake8-dunder-all rev: v0.5.0 hooks: - id: ensure-dunder-all files: ^dict2css/.*\.py$ - repo: https://github.com/domdfcoding/flake2lint rev: v0.4.3 hooks: - id: flake2lint - repo: https://github.com/pre-commit/pygrep-hooks rev: v1.10.0 hooks: - id: python-no-eval - id: rst-backticks - id: rst-directive-colons - id: rst-inline-touching-normal - repo: https://github.com/python-formate/pyupgrade rev: bbe3007 hooks: - id: pyupgrade args: - --py38-plus - --keep-runtime-typing - repo: https://github.com/Lucas-C/pre-commit-hooks rev: v1.5.1 hooks: - id: remove-crlf - id: forbid-crlf - repo: https://github.com/python-formate/snippet-fmt rev: v0.1.5 hooks: - id: snippet-fmt - repo: https://github.com/python-formate/formate rev: v1.2.1 hooks: - id: formate exclude: ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$ additional_dependencies: - formate-trailing-commas>=0.1.1 types_or: - python - pyi - repo: https://github.com/python-coincidence/dep_checker rev: v0.9.0 hooks: - id: dep_checker args: - dict2css # Custom hooks can be added below this comment sphinx-toolbox-dict2css-c0c963c/.pylintrc000066400000000000000000000346201520354072300205120ustar00rootroot00000000000000[MASTER] # Specify a configuration file. #rcfile= # Python code to execute, usually for sys.path manipulation such as # pygtk.require(). #init-hook= # Add files or directories to the blacklist. They should be base names, not # paths. ignore=CVS # Add files or directories matching the regex patterns to the blacklist. The # regex matches against base names, not paths. ignore-patterns= # Pickle collected data for later comparisons. persistent=yes # List of plugins (as comma separated values of python modules names) to load, # usually to register additional checkers. load-plugins= # Use multiple processes to speed up Pylint. jobs=1 # Allow loading of arbitrary C extensions. Extensions are imported into the # active Python interpreter and may run arbitrary code. unsafe-load-any-extension=no # A comma-separated list of package or module names from where C extensions may # be loaded. Extensions are loading into the active Python interpreter and may # run arbitrary code extension-pkg-whitelist= # Allow optimization of some AST trees. This will activate a peephole AST # optimizer, which will apply various small optimizations. For instance, it can # be used to obtain the result of joining multiple strings with the addition # operator. Joining a lot of strings can lead to a maximum recursion error in # Pylint and this flag can prevent that. It has one side effect, the resulting # AST will be different than the one from reality. This option is deprecated # and it will be removed in Pylint 2.0. optimize-ast=no [MESSAGES CONTROL] # Only show warnings with the listed confidence levels. Leave empty to show # all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED confidence= # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option # multiple time (only on the command line, not in the configuration file where # it should appear only once). See also the "--disable" option for examples. #enable= # Disable the message, report, category or checker with the given id(s). You # can either give multiple identifiers separated by comma (,) or put this # option multiple times (only on the command line, not in the configuration # file where it should appear only once).You can also use "--disable=all" to # disable everything first and then reenable specific checks. For example, if # you want to run only the similarities checker, you can use "--disable=all # --enable=similarities". If you want to run only the classes checker, but have # no Warning level messages displayed, use"--disable=all --enable=classes # --disable=W" disable=all enable=assert-on-tuple,astroid-error,bad-except-order,bad-inline-option,bad-option-value,bad-reversed-sequence,bare-except,binary-op-exception,boolean-datetime,catching-non-exception,cell-var-from-loop,confusing-with-statement,consider-merging-isinstance,consider-using-enumerate,consider-using-ternary,continue-in-finally,deprecated-pragma,django-not-available,duplicate-except,duplicate-key,eval-used,exec-used,expression-not-assigned,fatal,file-ignored,fixme,global-at-module-level,global-statement,global-variable-not-assigned,global-variable-undefined,http-response-with-content-type-json,http-response-with-json-dumps,invalid-all-object,invalid-characters-in-docstring,len-as-condition,literal-comparison,locally-disabled,locally-enabled,lost-exception,lowercase-l-suffix,misplaced-bare-raise,missing-kwoa,mixed-line-endings,model-has-unicode,model-missing-unicode,model-no-explicit-unicode,model-unicode-not-callable,multiple-imports,new-db-field-with-default,non-ascii-bytes-literals,nonexistent-operator,not-in-loop,notimplemented-raised,overlapping-except,parse-error,pointless-statement,pointless-string-statement,raising-bad-type,raising-non-exception,raw-checker-failed,redefine-in-handler,redefined-argument-from-local,redefined-builtin,redundant-content-type-for-json-response,reimported,relative-import,return-outside-function,simplifiable-if-statement,singleton-comparison,syntax-error,trailing-comma-tuple,trailing-newlines,unbalanced-tuple-unpacking,undefined-all-variable,undefined-loop-variable,unexpected-line-ending-format,unidiomatic-typecheck,unnecessary-lambda,unnecessary-pass,unnecessary-semicolon,unneeded-not,unpacking-non-sequence,unreachable,unrecognized-inline-option,used-before-assignment,useless-else-on-loop,using-constant-test,wildcard-import,yield-outside-function,useless-return [REPORTS] # Set the output format. Available formats are text, parseable, colorized, msvs # (visual studio) and html. You can also give a reporter class, eg # mypackage.mymodule.MyReporterClass. output-format=text # Put messages in a separate file for each module / package specified on the # command line instead of printing them on stdout. Reports (if any) will be # written in a file name "pylint_global.[txt|html]". This option is deprecated # and it will be removed in Pylint 2.0. files-output=no # Tells whether to display a full report or only the messages reports=no # Python expression which should return a note less than 10 (10 is the highest # note). You have access to the variables errors warning, statement which # respectively contain the number of errors / warnings messages and the total # number of statements analyzed. This is used by the global evaluation report # (RP0004). evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) # Template used to display messages. This is a python new-style format string # used to format the message information. See doc for all details #msg-template= [BASIC] # Good variable names which should always be accepted, separated by a comma good-names=i,j,k,ex,Run,_ # Bad variable names which should always be refused, separated by a comma bad-names=foo,bar,baz,toto,tutu,tata # Colon-delimited sets of names that determine each other's naming style when # the name regexes allow several styles. name-group= # Include a hint for the correct naming format with invalid-name include-naming-hint=no # List of decorators that produce properties, such as abc.abstractproperty. Add # to this list to register other decorators that produce valid properties. property-classes=abc.abstractproperty # Regular expression matching correct function names function-rgx=[a-z_][a-z0-9_]{2,30}$ # Naming hint for function names function-name-hint=[a-z_][a-z0-9_]{2,30}$ # Regular expression matching correct variable names variable-rgx=[a-z_][a-z0-9_]{2,30}$ # Naming hint for variable names variable-name-hint=[a-z_][a-z0-9_]{2,30}$ # Regular expression matching correct constant names const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ # Naming hint for constant names const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$ # Regular expression matching correct attribute names attr-rgx=[a-z_][a-z0-9_]{2,30}$ # Naming hint for attribute names attr-name-hint=[a-z_][a-z0-9_]{2,30}$ # Regular expression matching correct argument names argument-rgx=[a-z_][a-z0-9_]{2,30}$ # Naming hint for argument names argument-name-hint=[a-z_][a-z0-9_]{2,30}$ # Regular expression matching correct class attribute names class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ # Naming hint for class attribute names class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ # Regular expression matching correct inline iteration names inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$ # Naming hint for inline iteration names inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$ # Regular expression matching correct class names class-rgx=[A-Z_][a-zA-Z0-9]+$ # Naming hint for class names class-name-hint=[A-Z_][a-zA-Z0-9]+$ # Regular expression matching correct module names module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ # Naming hint for module names module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ # Regular expression matching correct method names method-rgx=[a-z_][a-z0-9_]{2,30}$ # Naming hint for method names method-name-hint=[a-z_][a-z0-9_]{2,30}$ # Regular expression which should only match function or class names that do # not require a docstring. no-docstring-rgx=^_ # Minimum line length for functions/classes that require docstrings, shorter # ones are exempt. docstring-min-length=-1 [ELIF] # Maximum number of nested blocks for function / method body max-nested-blocks=5 [FORMAT] # Maximum number of characters on a single line. max-line-length=159 # Regexp for a line that is allowed to be longer than the limit. ignore-long-lines=^\s*(# )??$ # Allow the body of an if to be on the same line as the test if there is no # else. single-line-if-stmt=no # List of optional constructs for which whitespace checking is disabled. `dict- # separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}. # `trailing-comma` allows a space between comma and closing bracket: (a, ). # `empty-line` allows space-only lines. no-space-check=trailing-comma,dict-separator # Maximum number of lines in a module max-module-lines=1000 # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 # tab). indent-string=' ' # Number of spaces of indent required inside a hanging or continued line. indent-after-paren=4 # Expected format of line ending, e.g. empty (any line ending), LF or CRLF. expected-line-ending-format= [LOGGING] # Logging modules to check that the string format arguments are in logging # function parameter format logging-modules=logging [MISCELLANEOUS] # List of note tags to take in consideration, separated by a comma. notes=FIXME,XXX,TODO [SIMILARITIES] # Minimum lines number of a similarity. min-similarity-lines=4 # Ignore comments when computing similarities. ignore-comments=yes # Ignore docstrings when computing similarities. ignore-docstrings=yes # Ignore imports when computing similarities. ignore-imports=no [SPELLING] # Spelling dictionary name. Available dictionaries: none. To make it working # install python-enchant package. spelling-dict= # List of comma separated words that should not be checked. spelling-ignore-words= # A path to a file that contains private dictionary; one word per line. spelling-private-dict-file= # Tells whether to store unknown words to indicated private dictionary in # --spelling-private-dict-file option instead of raising a message. spelling-store-unknown-words=no [TYPECHECK] # Tells whether missing members accessed in mixin class should be ignored. A # mixin class is detected if its name ends with "mixin" (case insensitive). ignore-mixin-members=yes # List of module names for which member attributes should not be checked # (useful for modules/projects where namespaces are manipulated during runtime # and thus existing member attributes cannot be deduced by static analysis. It # supports qualified module names, as well as Unix pattern matching. ignored-modules= # List of class names for which member attributes should not be checked (useful # for classes with dynamically set attributes). This supports the use of # qualified names. ignored-classes=optparse.Values,thread._local,_thread._local # List of members which are set dynamically and missed by pylint inference # system, and so shouldn't trigger E1101 when accessed. Python regular # expressions are accepted. generated-members= # List of decorators that produce context managers, such as # contextlib.contextmanager. Add to this list to register other decorators that # produce valid context managers. contextmanager-decorators=contextlib.contextmanager [VARIABLES] # Tells whether we should check for unused import in __init__ files. init-import=no # A regular expression matching the name of dummy variables (i.e. expectedly # not used). dummy-variables-rgx=(_+[a-zA-Z0-9]*?$)|dummy # List of additional names supposed to be defined in builtins. Remember that # you should avoid to define new builtins when possible. additional-builtins= # List of strings which can identify a callback function by name. A callback # name must start or end with one of those strings. callbacks=cb_,_cb # List of qualified module names which can have objects that can redefine # builtins. redefining-builtins-modules=six.moves,future.builtins [CLASSES] # List of method names used to declare (i.e. assign) instance attributes. defining-attr-methods=__init__,__new__,setUp # List of valid names for the first argument in a class method. valid-classmethod-first-arg=cls # List of valid names for the first argument in a metaclass class method. valid-metaclass-classmethod-first-arg=mcs # List of member names, which should be excluded from the protected access # warning. exclude-protected=_asdict,_fields,_replace,_source,_make [DESIGN] # Maximum number of arguments for function / method max-args=5 # Argument names that match this expression will be ignored. Default to name # with leading underscore ignored-argument-names=_.* # Maximum number of locals for function / method body max-locals=15 # Maximum number of return / yield for function / method body max-returns=6 # Maximum number of branch for function / method body max-branches=12 # Maximum number of statements in function / method body max-statements=60 # Maximum number of parents for a class (see R0901). max-parents=7 # Maximum number of attributes for a class (see R0902). max-attributes=7 # Minimum number of public methods for a class (see R0903). min-public-methods=2 # Maximum number of public methods for a class (see R0904). max-public-methods=20 # Maximum number of boolean expressions in a if statement max-bool-expr=5 [IMPORTS] # Deprecated modules which should not be used, separated by a comma deprecated-modules=regsub,TERMIOS,Bastion,rexec # Create a graph of every (i.e. internal and external) dependencies in the # given file (report RP0402 must not be disabled) import-graph= # Create a graph of external dependencies in the given file (report RP0402 must # not be disabled) ext-import-graph= # Create a graph of internal dependencies in the given file (report RP0402 must # not be disabled) int-import-graph= # Force import order to recognize a module as part of the standard # compatibility libraries. known-standard-library= # Force import order to recognize a module as part of a third party library. known-third-party=enchant # Analyse import fallback blocks. This can be used to support both Python 2 and # 3 compatible code, which means that the block might have code that exists # only in one or another interpreter, leading to false positives when analysed. analyse-fallback-blocks=no [EXCEPTIONS] # Exceptions that will emit a warning when being caught. Defaults to # "Exception" overgeneral-exceptions=Exception sphinx-toolbox-dict2css-c0c963c/.readthedocs.yml000066400000000000000000000012021520354072300217210ustar00rootroot00000000000000# This file is managed by 'repo_helper'. Don't edit it directly. # Read the Docs configuration file --- version: 2 sphinx: builder: html configuration: doc-source/conf.py formats: - pdf - htmlzip python: install: - requirements: requirements.txt - requirements: doc-source/requirements.txt build: os: ubuntu-22.04 tools: python: '3.9' jobs: post_create_environment: - pip install . post_install: - pip install sphinxcontrib-applehelp==1.0.4 sphinxcontrib-devhelp==1.0.2 sphinxcontrib-htmlhelp==2.0.1 sphinxcontrib-jsmath==1.0.1 sphinxcontrib-qthelp==1.0.3 sphinxcontrib-serializinghtml==1.1.5 sphinx-toolbox-dict2css-c0c963c/.style.yapf000066400000000000000000000271771520354072300207550ustar00rootroot00000000000000[style] # Align closing bracket with visual indentation. align_closing_bracket_with_visual_indent=True # Allow dictionary keys to exist on multiple lines. For example: # # x = { # ('this is the first element of a tuple', # 'this is the second element of a tuple'): # value, # } allow_multiline_dictionary_keys=True # Allow lambdas to be formatted on more than one line. allow_multiline_lambdas=False # Allow splitting before a default / named assignment in an argument list. allow_split_before_default_or_named_assigns=True # Allow splits before the dictionary value. allow_split_before_dict_value=True # Let spacing indicate operator precedence. For example: # # a = 1 * 2 + 3 / 4 # b = 1 / 2 - 3 * 4 # c = (1 + 2) * (3 - 4) # d = (1 - 2) / (3 + 4) # e = 1 * 2 - 3 # f = 1 + 2 + 3 + 4 # # will be formatted as follows to indicate precedence: # # a = 1*2 + 3/4 # b = 1/2 - 3*4 # c = (1+2) * (3-4) # d = (1-2) / (3+4) # e = 1*2 - 3 # f = 1 + 2 + 3 + 4 # arithmetic_precedence_indication=False # Number of blank lines surrounding top-level function and class # definitions. blank_lines_around_top_level_definition=2 # Insert a blank line before a class-level docstring. blank_line_before_class_docstring=False # Insert a blank line before a module docstring. blank_line_before_module_docstring=False # Insert a blank line before a 'def' or 'class' immediately nested # within another 'def' or 'class'. For example: # # class Foo: # # <------ this blank line # def method(): # ... blank_line_before_nested_class_or_def=True # Do not split consecutive brackets. Only relevant when # dedent_closing_brackets is set. For example: # # call_func_that_takes_a_dict( # { # 'key1': 'value1', # 'key2': 'value2', # } # ) # # would reformat to: # # call_func_that_takes_a_dict({ # 'key1': 'value1', # 'key2': 'value2', # }) coalesce_brackets=True # The column limit. column_limit=115 # The style for continuation alignment. Possible values are: # # - SPACE: Use spaces for continuation alignment. This is default behavior. # - FIXED: Use fixed number (CONTINUATION_INDENT_WIDTH) of columns # (ie: CONTINUATION_INDENT_WIDTH/INDENT_WIDTH tabs or # CONTINUATION_INDENT_WIDTH spaces) for continuation alignment. # - VALIGN-RIGHT: Vertically align continuation lines to multiple of # INDENT_WIDTH columns. Slightly right (one tab or a few spaces) if # cannot vertically align continuation lines with indent characters. continuation_align_style=VALIGN-RIGHT # Indent width used for line continuations. continuation_indent_width=8 # Put closing brackets on a separate line, dedented, if the bracketed # expression can't fit in a single line. Applies to all kinds of brackets, # including function definitions and calls. For example: # # config = { # 'key1': 'value1', # 'key2': 'value2', # } # <--- this bracket is dedented and on a separate line # # time_series = self.remote_client.query_entity_counters( # entity='dev3246.region1', # key='dns.query_latency_tcp', # transform=Transformation.AVERAGE(window=timedelta(seconds=60)), # start_ts=now()-timedelta(days=3), # end_ts=now(), # ) # <--- this bracket is dedented and on a separate line dedent_closing_brackets=False # Disable the heuristic which places each list element on a separate line # if the list is comma-terminated. disable_ending_comma_heuristic=False # Place each dictionary entry onto its own line. each_dict_entry_on_separate_line=False # Require multiline dictionary even if it would normally fit on one line. # For example: # # config = { # 'key1': 'value1' # } force_multiline_dict=False # The regex for an i18n comment. The presence of this comment stops # reformatting of that line, because the comments are required to be # next to the string they translate. ;i18n_comment= # The i18n function call names. The presence of this function stops # reformattting on that line, because the string it has cannot be moved # away from the i18n comment. ;i18n_function_call= # Indent blank lines. indent_blank_lines=False # Put closing brackets on a separate line, indented, if the bracketed # expression can't fit in a single line. Applies to all kinds of brackets, # including function definitions and calls. For example: # # config = { # 'key1': 'value1', # 'key2': 'value2', # } # <--- this bracket is indented and on a separate line # # time_series = self.remote_client.query_entity_counters( # entity='dev3246.region1', # key='dns.query_latency_tcp', # transform=Transformation.AVERAGE(window=timedelta(seconds=60)), # start_ts=now()-timedelta(days=3), # end_ts=now(), # ) # <--- this bracket is indented and on a separate line indent_closing_brackets=True # Indent the dictionary value if it cannot fit on the same line as the # dictionary key. For example: # # config = { # 'key1': # 'value1', # 'key2': value1 + # value2, # } indent_dictionary_value=True # The number of columns to use for indentation. indent_width=4 # Join short lines into one line. E.g., single line 'if' statements. join_multiple_lines=False # Do not include spaces around selected binary operators. For example: # # 1 + 2 * 3 - 4 / 5 # # will be formatted as follows when configured with "*,/": # # 1 + 2*3 - 4/5 ;no_spaces_around_selected_binary_operators= # Use spaces around default or named assigns. spaces_around_default_or_named_assign=False # Adds a space after the opening '{' and before the ending '}' dict delimiters. # # {1: 2} # # will be formatted as: # # { 1: 2 } spaces_around_dict_delimiters=False # Adds a space after the opening '[' and before the ending ']' list delimiters. # # [1, 2] # # will be formatted as: # # [ 1, 2 ] spaces_around_list_delimiters=False # Use spaces around the power operator. spaces_around_power_operator=False # Use spaces around the subscript / slice operator. For example: # # my_list[1 : 10 : 2] spaces_around_subscript_colon=False # Adds a space after the opening '(' and before the ending ')' tuple delimiters. # # (1, 2, 3) # # will be formatted as: # # ( 1, 2, 3 ) spaces_around_tuple_delimiters=False # The number of spaces required before a trailing comment. # This can be a single value (representing the number of spaces # before each trailing comment) or list of values (representing # alignment column values; trailing comments within a block will # be aligned to the first column value that is greater than the maximum # line length within the block). For example: # # With spaces_before_comment=5: # # 1 + 1 # Adding values # # will be formatted as: # # 1 + 1 # Adding values <-- 5 spaces between the end of the statement and comment # # With spaces_before_comment=15, 20: # # 1 + 1 # Adding values # two + two # More adding # # longer_statement # This is a longer statement # short # This is a shorter statement # # a_very_long_statement_that_extends_beyond_the_final_column # Comment # short # This is a shorter statement # # will be formatted as: # # 1 + 1 # Adding values <-- end of line comments in block aligned to col 15 # two + two # More adding # # longer_statement # This is a longer statement <-- end of line comments in block aligned to col 20 # short # This is a shorter statement # # a_very_long_statement_that_extends_beyond_the_final_column # Comment <-- the end of line comments are aligned based on the line length # short # This is a shorter statement # spaces_before_comment=2 # Insert a space between the ending comma and closing bracket of a list, # etc. space_between_ending_comma_and_closing_bracket=True # Use spaces inside brackets, braces, and parentheses. For example: # # method_call( 1 ) # my_dict[ 3 ][ 1 ][ get_index( *args, **kwargs ) ] # my_set = { 1, 2, 3 } space_inside_brackets=False # Split before arguments split_all_comma_separated_values=False # Split before arguments, but do not split all subexpressions recursively # (unless needed). split_all_top_level_comma_separated_values=True # Split before arguments if the argument list is terminated by a # comma. split_arguments_when_comma_terminated=False # Set to True to prefer splitting before '+', '-', '*', '/', '//', or '@' # rather than after. split_before_arithmetic_operator=True # Set to True to prefer splitting before '&', '|' or '^' rather than # after. split_before_bitwise_operator=True # Split before the closing bracket if a list or dict literal doesn't fit on # a single line. split_before_closing_bracket=True # Split before a dictionary or set generator (comp_for). For example, note # the split before the 'for': # # foo = { # variable: 'Hello world, have a nice day!' # for variable in bar if variable != 42 # } split_before_dict_set_generator=True # Split before the '.' if we need to split a longer expression: # # foo = ('This is a really long string: {}, {}, {}, {}'.format(a, b, c, d)) # # would reformat to something like: # # foo = ('This is a really long string: {}, {}, {}, {}' # .format(a, b, c, d)) split_before_dot=True # Split after the opening paren which surrounds an expression if it doesn't # fit on a single line. split_before_expression_after_opening_paren=True # If an argument / parameter list is going to be split, then split before # the first argument. split_before_first_argument=False # Set to True to prefer splitting before 'and' or 'or' rather than # after. split_before_logical_operator=True # Split named assignments onto individual lines. split_before_named_assigns=True # Set to True to split list comprehensions and generators that have # non-trivial expressions and multiple clauses before each of these # clauses. For example: # # result = [ # a_long_var + 100 for a_long_var in xrange(1000) # if a_long_var % 10] # # would reformat to something like: # # result = [ # a_long_var + 100 # for a_long_var in xrange(1000) # if a_long_var % 10] split_complex_comprehension=True # The penalty for splitting right after the opening bracket. split_penalty_after_opening_bracket=100 # The penalty for splitting the line after a unary operator. split_penalty_after_unary_operator=10000 # The penalty of splitting the line around the '+', '-', '*', '/', '//', # ``%``, and '@' operators. split_penalty_arithmetic_operator=300 # The penalty for splitting right before an if expression. split_penalty_before_if_expr=0 # The penalty of splitting the line around the '&', '|', and '^' # operators. split_penalty_bitwise_operator=300 # The penalty for splitting a list comprehension or generator # expression. split_penalty_comprehension=80 # The penalty for characters over the column limit. split_penalty_excess_character=7000 # The penalty incurred by adding a line split to the unwrapped line. The # more line splits added the higher the penalty. split_penalty_for_added_line_split=30 # The penalty of splitting a list of "import as" names. For example: # # from a_very_long_or_indented_module_name_yada_yad import (long_argument_1, # long_argument_2, # long_argument_3) # # would reformat to something like: # # from a_very_long_or_indented_module_name_yada_yad import ( # long_argument_1, long_argument_2, long_argument_3) split_penalty_import_names=0 # The penalty of splitting the line around the 'and' and 'or' # operators. split_penalty_logical_operator=300 # Use the Tab character for indentation. use_tabs=True sphinx-toolbox-dict2css-c0c963c/CONTRIBUTING.rst000066400000000000000000000025011520354072300212770ustar00rootroot00000000000000============== Contributing ============== .. This file based on https://github.com/PyGithub/PyGithub/blob/master/CONTRIBUTING.md ``dict2css`` uses `tox `_ to automate testing and packaging, and `pre-commit `_ to maintain code quality. Install ``pre-commit`` with ``pip`` and install the git hook: .. code-block:: bash $ python -m pip install pre-commit $ pre-commit install Coding style -------------- `formate `_ is used for code formatting. It can be run manually via ``pre-commit``: .. code-block:: bash $ pre-commit run formate -a Or, to run the complete autoformatting suite: .. code-block:: bash $ pre-commit run -a Automated tests ------------------- Tests are run with ``tox`` and ``pytest``. To run tests for a specific Python version, such as Python 3.6: .. code-block:: bash $ tox -e py36 To run tests for all Python versions, simply run: .. code-block:: bash $ tox Type Annotations ------------------- Type annotations are checked using ``mypy``. Run ``mypy`` using ``tox``: .. code-block:: bash $ tox -e mypy Build documentation locally ------------------------------ The documentation is powered by Sphinx. A local copy of the documentation can be built with ``tox``: .. code-block:: bash $ tox -e docs sphinx-toolbox-dict2css-c0c963c/LICENSE000066400000000000000000000020501520354072300176420ustar00rootroot00000000000000Copyright (c) 2021 Dominic Davis-Foster Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. sphinx-toolbox-dict2css-c0c963c/README.rst000066400000000000000000000130051520354072300203260ustar00rootroot00000000000000######### dict2css ######### .. start short_desc **A μ-library for constructing cascading style sheets from Python dictionaries.** .. end short_desc .. start shields .. list-table:: :stub-columns: 1 :widths: 10 90 * - Docs - |docs| |docs_check| * - Tests - |actions_linux| |actions_windows| |actions_macos| |coveralls| * - PyPI - |pypi-version| |supported-versions| |supported-implementations| |wheel| * - Anaconda - |conda-version| |conda-platform| * - Activity - |commits-latest| |commits-since| |maintained| |pypi-downloads| * - QA - |codefactor| |actions_flake8| |actions_mypy| * - Other - |license| |language| |requires| .. |docs| image:: https://img.shields.io/readthedocs/dict2css/latest?logo=read-the-docs :target: https://dict2css.readthedocs.io/en/latest :alt: Documentation Build Status .. |docs_check| image:: https://github.com/sphinx-toolbox/dict2css/workflows/Docs%20Check/badge.svg :target: https://github.com/sphinx-toolbox/dict2css/actions?query=workflow%3A%22Docs+Check%22 :alt: Docs Check Status .. |actions_linux| image:: https://github.com/sphinx-toolbox/dict2css/workflows/Linux/badge.svg :target: https://github.com/sphinx-toolbox/dict2css/actions?query=workflow%3A%22Linux%22 :alt: Linux Test Status .. |actions_windows| image:: https://github.com/sphinx-toolbox/dict2css/workflows/Windows/badge.svg :target: https://github.com/sphinx-toolbox/dict2css/actions?query=workflow%3A%22Windows%22 :alt: Windows Test Status .. |actions_macos| image:: https://github.com/sphinx-toolbox/dict2css/workflows/macOS/badge.svg :target: https://github.com/sphinx-toolbox/dict2css/actions?query=workflow%3A%22macOS%22 :alt: macOS Test Status .. |actions_flake8| image:: https://github.com/sphinx-toolbox/dict2css/workflows/Flake8/badge.svg :target: https://github.com/sphinx-toolbox/dict2css/actions?query=workflow%3A%22Flake8%22 :alt: Flake8 Status .. |actions_mypy| image:: https://github.com/sphinx-toolbox/dict2css/workflows/mypy/badge.svg :target: https://github.com/sphinx-toolbox/dict2css/actions?query=workflow%3A%22mypy%22 :alt: mypy status .. |requires| image:: https://dependency-dash.repo-helper.uk/github/sphinx-toolbox/dict2css/badge.svg :target: https://dependency-dash.repo-helper.uk/github/sphinx-toolbox/dict2css/ :alt: Requirements Status .. |coveralls| image:: https://img.shields.io/coveralls/github/sphinx-toolbox/dict2css/master?logo=coveralls :target: https://coveralls.io/github/sphinx-toolbox/dict2css?branch=master :alt: Coverage .. |codefactor| image:: https://img.shields.io/codefactor/grade/github/sphinx-toolbox/dict2css?logo=codefactor :target: https://www.codefactor.io/repository/github/sphinx-toolbox/dict2css :alt: CodeFactor Grade .. |pypi-version| image:: https://img.shields.io/pypi/v/dict2css :target: https://pypi.org/project/dict2css/ :alt: PyPI - Package Version .. |supported-versions| image:: https://img.shields.io/pypi/pyversions/dict2css?logo=python&logoColor=white :target: https://pypi.org/project/dict2css/ :alt: PyPI - Supported Python Versions .. |supported-implementations| image:: https://img.shields.io/pypi/implementation/dict2css :target: https://pypi.org/project/dict2css/ :alt: PyPI - Supported Implementations .. |wheel| image:: https://img.shields.io/pypi/wheel/dict2css :target: https://pypi.org/project/dict2css/ :alt: PyPI - Wheel .. |conda-version| image:: https://img.shields.io/conda/v/conda-forge/dict2css?logo=anaconda :target: https://anaconda.org/conda-forge/dict2css :alt: Conda - Package Version .. |conda-platform| image:: https://img.shields.io/conda/pn/conda-forge/dict2css?label=conda%7Cplatform :target: https://anaconda.org/conda-forge/dict2css :alt: Conda - Platform .. |license| image:: https://img.shields.io/github/license/sphinx-toolbox/dict2css :target: https://github.com/sphinx-toolbox/dict2css/blob/master/LICENSE :alt: License .. |language| image:: https://img.shields.io/github/languages/top/sphinx-toolbox/dict2css :alt: GitHub top language .. |commits-since| image:: https://img.shields.io/github/commits-since/sphinx-toolbox/dict2css/v0.6.0 :target: https://github.com/sphinx-toolbox/dict2css/pulse :alt: GitHub commits since tagged version .. |commits-latest| image:: https://img.shields.io/github/last-commit/sphinx-toolbox/dict2css :target: https://github.com/sphinx-toolbox/dict2css/commit/master :alt: GitHub last commit .. |maintained| image:: https://img.shields.io/maintenance/yes/2026 :alt: Maintenance .. |pypi-downloads| image:: https://img.shields.io/pypi/dm/dict2css :target: https://pypistats.org/packages/dict2css :alt: PyPI - Downloads .. end shields ``dict2css`` provides an API similar to the json_ and toml_ modules, with ``dump`` and ``load`` functions. The ``dump`` function takes a mapping of `CSS selectors`_ to mappings of CSS properties. Each property value may, optionally, be a two-element tuple containing the value and the string "important". The ``load`` function returns a mapping with the same structure. For more information see `the documentation`_. .. _json: https://docs.python.org/3/library/json.html .. _toml: https://github.com/uiri/toml/ .. _CSS selectors: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors .. _the documentation: https://dict2css.readthedocs.io/en/latest/ Installation -------------- .. start installation ``dict2css`` can be installed from PyPI or Anaconda. To install with ``pip``: .. code-block:: bash $ python -m pip install dict2css To install with ``conda``: .. code-block:: bash $ conda install -c conda-forge dict2css .. end installation sphinx-toolbox-dict2css-c0c963c/dict2css/000077500000000000000000000000001520354072300203565ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/dict2css/__init__.py000066400000000000000000000230271520354072300224730ustar00rootroot00000000000000#!/usr/bin/env python3 # # __init__.py """ A μ-library for constructing cascasing style sheets from Python dictionaries. """ # # Copyright © 2020-2021 Dominic Davis-Foster # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE # OR OTHER DEALINGS IN THE SOFTWARE. # # stdlib from io import TextIOBase from typing import IO, Any, Dict, Iterable, List, Literal, Mapping, MutableMapping, Optional, Sequence, Union # 3rd party import tinycss2 # type: ignore[import-untyped] import tinycss2.ast # type: ignore[import-untyped] from domdf_python_tools.paths import PathPlus from domdf_python_tools.typing import PathLike from domdf_python_tools.words import TAB # this package from dict2css.helpers import em, px, rem # noqa: F401 from dict2css.serializer import CSSSerializer __author__: str = "Dominic Davis-Foster" __copyright__: str = "2020-2026 Dominic Davis-Foster" __license__: str = "MIT License" __version__: str = "0.6.0" __email__: str = "dominic@davis-foster.co.uk" __all__ = [ "IMPORTANT", "Style", "dumps", "dump", "loads", "load", ] # TODO: allow int indent like json.dumps etc. IMPORTANT = "important" """ The string ``'important'``. .. latex:vspace:: 10px """ # Property = Union[Tuple[Union[str, int, None], str], str, int, None] Property = Union[Sequence, str, int, float, None] Style = Mapping[str, Property] """ Type annotation representing a style for :func:`~.dumps` and :func:`~.dump`. The keys are CSS properties. The values can be either: * A :class:`str`, :class:`float` or :py:obj:`None`, giving the value of the property. * A :class:`tuple` of the property's value (as above) and the priority such as :data:`~.IMPORTANT` (which sets ``!important`` on the property). """ def dumps( styles: Mapping[str, Union[Style, Mapping]], *, indent: str = TAB, trailing_semicolon: Optional[bool] = False, indent_closing_brace: bool = False, minify: bool = False, sort_keys: bool = False, check_circular: bool = True, none_style: Union[Literal["none"], Literal["None"]] = "none", ) -> str: r""" Construct a cascading style sheet from a dictionary. ``styles`` is a mapping of CSS selector strings to styles, which map property names to their values: .. code-block:: python styles = {".wy-nav-content": {"max-width": (px(1200), IMPORTANT)}} print(dumps(styles)) .. code-block:: css .wy-nav-content { max-width: 1200px !important } See the :py:obj:`~.Style` object for more information on the layout. The keys can also be media at-rules, with the values mappings of property names to their values: .. code-block:: python styles = { "@media screen and (min-width: 870px)": { ".wy-nav-content": {"max-width": (px(1200), IMPORTANT)}, }, } print(dumps(styles)) .. code-block:: css @media screen and (min-width: 870px) { .wy-nav-content { max-width: 1200px !important } } :param styles: A mapping of CSS selectors to styles. :param indent: The indent to use, such as a tab (``\t``), two spaces or four spaces. :param trailing_semicolon: Whether to add a semicolon to the end of the final property. :param indent_closing_brace: :param minify: Minify the CSS. Overrides all other options. :param sort_keys: Sort dictionary keys alphabetically. :param check_circular: Check for circular references. :param none_style: Whether to represent :py:obj:`None` as ``None`` or ``none``. :return: The style sheet as a string. .. versionchanged:: 0.2.0 Added support for media at-rules. .. versionchanged:: 0.5.0 New implementation. Output may differ slightly from previous css-parser based one. .. versionchanged:: 0.6.0 Added ``none_style`` option. """ # noqa: SXL001 serializer = CSSSerializer( indent=indent, trailing_semicolon=trailing_semicolon, indent_closing_brace=indent_closing_brace, minify=minify, sort_keys=sort_keys, check_circular=check_circular, none_style=none_style, ) css = serializer.encode(styles).rstrip() if css: return css + '\n' else: return '' def dump( styles: Mapping[str, Union[Style, Mapping]], fp: Union[PathLike, IO], *, indent: str = TAB, trailing_semicolon: Optional[bool] = False, indent_closing_brace: bool = False, minify: bool = False, sort_keys: bool = False, check_circular: bool = True, none_style: Union[Literal["none"], Literal["None"]] = "none", ) -> None: r""" Construct a style sheet from a dictionary and write it to ``fp``. .. code-block:: python styles = {".wy-nav-content": {"max-width": (px(1200), IMPORTANT)}} dump(styles, ...) .. code-block:: css .wy-nav-content { max-width: 1200px !important } See the :py:obj:`~.Style` object for more information on the layout. .. latex:clearpage:: The keys can also be media at-rules, with the values mappings of property names to their values: .. code-block:: python styles = { "@media screen and (min-width: 870px)": { ".wy-nav-content": {"max-width": (px(1200), IMPORTANT)}, }, } dump(styles, ...) .. code-block:: css @media screen and (min-width: 870px) { .wy-nav-content { max-width: 1200px !important } } :param styles: A mapping of CSS selectors to styles. :param fp: An open file handle, or the filename of a file to write to. :param indent: The indent to use, such as a tab (``\t``), two spaces or four spaces. :param trailing_semicolon: Whether to add a semicolon to the end of the final property. :param indent_closing_brace: :param minify: Minify the CSS. Overrides all other options. :param sort_keys: Sort dictionary keys alphabetically. :param check_circular: Check for circular references. :param none_style: Whether to represent :py:obj:`None` as ``None`` or ``none``. .. versionchanged:: 0.2.0 * ``fp`` now accepts :py:obj:`domdf_python_tools.typing.PathLike` objects, representing the path of a file to write to. * Added support for media at-rules. .. versionchanged:: 0.5.0 New implementation. Output may differ slightly from previous css-parser based one. .. versionchanged:: 0.6.0 Added ``none_style`` option. """ # noqa: SXL001 css = dumps( styles, indent=indent, trailing_semicolon=trailing_semicolon, indent_closing_brace=indent_closing_brace, sort_keys=sort_keys, check_circular=check_circular, minify=minify, none_style=none_style, ) if isinstance(fp, TextIOBase): fp.write(css) else: PathPlus(fp).write_clean(css) def loads(styles: str) -> MutableMapping[str, MutableMapping[str, Any]]: r""" Parse a style sheet and return its dictionary representation. .. versionadded:: 0.2.0 .. versionchanged:: 0.5.0 New implementation. Output may differ slightly from previous css-parser based one. :param styles: :return: The style sheet as a dictionary. .. latex:clearpage:: """ stylesheet = tinycss2.parse_blocks_contents(styles, skip_comments=True, skip_whitespace=True) styles_dict: MutableMapping[str, MutableMapping[str, Any]] = {} def parse_style(style: List[tinycss2.ast.Node]) -> MutableMapping[str, Property]: style_dict: Dict[str, Property] = {} prop: Union[tinycss2.ast.ParseError, tinycss2.ast.Declaration] for prop in tinycss2.parse_declaration_list(style, skip_comments=True, skip_whitespace=True): if isinstance(prop, tinycss2.ast.ParseError): raise ValueError(prop) if prop.important: style_dict[prop.name.strip()] = (_serialize(prop.value), IMPORTANT) else: style_dict[prop.name.strip()] = _serialize(prop.value) return style_dict rule: tinycss2.ast.Node for rule in stylesheet: if isinstance(rule, tinycss2.ast.QualifiedRule): styles_dict[_serialize(rule.prelude)] = parse_style(rule.content) elif isinstance(rule, tinycss2.ast.AtRule): at_rule_styles = styles_dict[f"@{rule.at_keyword} {_serialize(rule.prelude)}"] = {} for child in tinycss2.parse_blocks_contents(rule.content, skip_comments=True, skip_whitespace=True): at_rule_styles[_serialize(child.prelude)] = parse_style(child.content) else: raise NotImplementedError(rule) return styles_dict def _serialize(nodes: Iterable[tinycss2.ast.Node]) -> str: return tinycss2.serialize(nodes).strip() def load(fp: Union[PathLike, IO]) -> MutableMapping[str, MutableMapping[str, Any]]: r""" Parse a cascading style sheet from the given file and return its dictionary representation. .. versionadded:: 0.2.0 .. versionchanged:: 0.5.0 New implementation. Output may differ slightly from previous css-parser based one. :param fp: An open file handle, or the filename of a file to write to. :return: The style sheet as a dictionary. """ if isinstance(fp, TextIOBase): styles = fp.read() else: styles = PathPlus(fp).read_text() return loads(styles) sphinx-toolbox-dict2css-c0c963c/dict2css/helpers.py000066400000000000000000000033231520354072300223730ustar00rootroot00000000000000#!/usr/bin/env python3 # # helpers.py """ Helper functions. .. versionadded:: 0.2.0 """ # # Copyright © 2020-2021 Dominic Davis-Foster # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE # OR OTHER DEALINGS IN THE SOFTWARE. # # stdlib from typing import Union __all__ = ["em", "px", "rem"] def px(val: Union[int, float, str]) -> str: """ Helper function to format a number as a value in pixels. :param val: """ return f"{val}px" def em(val: Union[int, float, str]) -> str: """ Helper function to format a number as a value in em. :param val: """ return f"{val}em" def rem(val: Union[int, float, str]) -> str: """ Helper function to format a number as a value in rem. :param val: """ return f"{val}rem" sphinx-toolbox-dict2css-c0c963c/dict2css/py.typed000066400000000000000000000000001520354072300220430ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/dict2css/serializer.py000066400000000000000000000255301520354072300231060ustar00rootroot00000000000000#!/usr/bin/env python3 # # serializer.py """ Serializer for cascading style sheets. .. versionadded:: 0.2.0 """ # # Copyright © 2021 Dominic Davis-Foster # # Adapted from https://github.com/austinyu/ujson5 # Copyright (c) 2025 Sir Austin # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE # OR OTHER DEALINGS IN THE SOFTWARE. # # stdlib import re from contextlib import contextmanager from typing import Any, Callable, Dict, Iterable, Iterator, Literal, Mapping, Optional, Union # 3rd party from domdf_python_tools.words import TAB __all__ = ["CSSSerializer"] #: Python objects that can be serialized to CSS Serializable = Union[dict, list, tuple, int, float, str, bool, None] #: A callable that takes in an object that is not serializable and returns a serializable object DefaultInterface = Union[ Callable[[Any], dict], Callable[[Any], list], Callable[[Any], tuple], Callable[[Any], int], Callable[[Any], float], Callable[[Any], str], Callable[[Any], bool], Callable[[Any], Serializable] ] ESCAPE = re.compile(r'[\x00-\x1f\\\b\f\n\r\t]') ESCAPE_DCT = { '\\': "\\\\", '\x08': "\\b", '\x0c': "\\f", '\n': "\\n", '\r': "\\r", '\t': "\\t", } for i in range(0x20): ESCAPE_DCT.setdefault(chr(i), f"\\u{i:04x}") class CSSSerializer: r""" Serializes a dictionary to CSS. This controls the formatting of the style sheet. :param indent: The indent to use, such as a tab (``\t``), two spaces or four spaces. :param trailing_semicolon: Whether to add a semicolon to the end of the final property. :param indent_closing_brace: :param minify: Minify the CSS. Overrides all other options. :param sort_keys: Sort dictionary keys alphabetically. :param check_circular: Check for circular references. :param none_style: Whether to represent :py:obj:`None` as ``None`` or ``none``. .. versionchanged:: 0.5.0 New implementation. Output may differ slightly from previous css-parser based one. .. versionchanged:: 0.6.0 Added ``none_style`` option. .. autosummary-widths:: 1/4 """ # noqa: SXL001 def __init__( self, *, indent: str = TAB, trailing_semicolon: Optional[bool] = None, indent_closing_brace: bool = False, minify: bool = False, sort_keys: bool = False, check_circular: bool = True, # default: Optional[DefaultInterface] = None, none_style: Union[Literal["none"], Literal["None"]] = "none", ) -> None: self._set_options( indent=indent, trailing_semicolon=trailing_semicolon, indent_closing_brace=indent_closing_brace, minify=minify, sort_keys=sort_keys, none_style=none_style, ) if check_circular: self._markers: Optional[Dict[int, Any]] = {} else: self._markers = None # TODO self._default: Optional[DefaultInterface] = default self._default: Optional[DefaultInterface] = None def _set_options( self, indent: str = TAB, trailing_semicolon: Optional[bool] = None, indent_closing_brace: bool = False, minify: bool = False, sort_keys: bool = False, none_style: Union[Literal["none"], Literal["None"]] = "none", ) -> None: self._sort_keys: bool = sort_keys self._indent_str: str = (None if minify else indent) or '' self.none_style = none_style if minify: self._key_separator: str = ':' else: self._key_separator = ": " if not indent and not minify: self._item_separator: str = "; " else: self._item_separator = ';' if minify: self._trailing_semicolon = False elif trailing_semicolon is None: self._trailing_semicolon = bool(self._indent_str) else: self._trailing_semicolon = trailing_semicolon if indent_closing_brace and indent is not None: self._indent_closing_brace = True else: self._indent_closing_brace = False self._minify = minify # TODO: deprecate def reset_style(self) -> None: # pragma: no cover """ Reset the serializer to its default style. """ self._set_options() def encode(self, obj: Mapping) -> str: """ Return a CSS representation of a Python dictionary. :param obj: The Python dictionary to be serialized :returns: The CSS string representation of the Python dictionary """ return ''.join(self.iterencode(obj)) def iterencode(self, obj: Mapping) -> Iterable[str]: """ Encode the given dictionary and yield each part of the CSS string representation. :param obj: The Python dictionary to be serialized :returns: An iterable of strings representing the CSS serialization of the Python dictionary. """ if not isinstance(obj, Mapping): raise TypeError(f"Cannot convert {type(obj)} to CSS") return self._iterencode_dict(obj, indent_level=-1) def default(self, obj: Any) -> Serializable: """ Override this method in a subclass to implement custom serialization for objects that are not serializable by default. This method should return a serializable object. If this method is not overridden, the encoder will raise a :exc:`ValueError` when trying to encode an unsupported object. :param obj: The object to be serialized that is not supported by default. :returns: A serializable object :raises: ValueError: If the object cannot be serialized """ if self._default is not None: # pragma no cover # TODO return self._default(obj) raise ValueError(f"Object of type {obj.__class__.__name__} cannot be represented in CSS") def _encode_float(self, obj: float) -> str: if obj != obj or obj == float("inf") or obj == float("-inf"): raise ValueError(f"Out of range float values are not allowed: {repr(obj)}") else: return repr(obj) def _encode_str(self, obj: str) -> str: def replace_unicode(match: re.Match) -> str: # pragma: no cover # TODO return ESCAPE_DCT[match.group(0)] return ESCAPE.sub(replace_unicode, obj) def _iterencode(self, obj: Any, indent_level: int) -> Iterable[str]: if isinstance(obj, str): yield self._encode_str(obj) elif obj is True: yield "true" elif obj is False: yield "false" elif obj is None: yield self.none_style # either none (default; preferred) or None elif isinstance(obj, int): yield repr(obj) elif isinstance(obj, float): yield self._encode_float(obj) elif isinstance(obj, (list, tuple)): # pragma: no cover # TODO (needs default exposed) yield from self._iterencode_list(obj, indent_level) elif isinstance(obj, dict): # pragma: no cover # TODO (needs default exposed) yield from self._iterencode_dict(obj, indent_level) else: if self._markers is not None: marker_id: Optional[int] = id(obj) if marker_id in self._markers: # pragma: no cover # TODO (super edge case) raise ValueError("Circular reference detected") assert marker_id is not None self._markers[marker_id] = obj else: marker_id = None obj_user = self.default(obj) yield from self._iterencode(obj_user, indent_level) # pragma: no cover # TODO (needs default exposed) if self._markers is not None and marker_id is not None: # pragma: no cover # TODO (needs default exposed) del self._markers[marker_id] def _iterencode_list( self, obj: Union[list, tuple, None], indent_level: int, ) -> Iterable[str]: # this package from dict2css import IMPORTANT if not obj: raise ValueError("Property cannot be empty") if self._markers is not None: marker_id: Optional[int] = id(obj) if marker_id in self._markers: # pragma: no cover # TODO (super edge case) raise ValueError("Circular reference detected") assert marker_id is not None self._markers[marker_id] = obj else: marker_id = None first: bool = True for value in obj: if first: yield '' first = False else: yield ' ' if value == IMPORTANT: yield "!important" else: yield from self._iterencode(value, indent_level) if self._markers is not None and marker_id is not None: del self._markers[marker_id] def _iterencode_dict( self, obj: Mapping[str, Any], indent_level: int, ) -> Iterable[str]: if not obj: if indent_level >= 0: yield "{}" return if self._markers is not None: marker_id: Optional[int] = id(obj) if marker_id in self._markers: raise ValueError("Circular reference detected") assert marker_id is not None self._markers[marker_id] = obj else: marker_id = None if indent_level >= 0: yield '{' minify_indent = False if self._minify or not self._indent_str: # No indent newline_indent: Optional[str] = None if indent_level == -1: indent_level += 1 minify_indent = True else: indent_level += 1 newline_indent = '\n' + self._indent_str * indent_level assert newline_indent is not None if indent_level > 0: yield newline_indent first = True if self._sort_keys: items: Any = sorted(obj.items()) else: items = obj.items() total_items: int = len(items) for idx, (key, value) in enumerate(items): if not isinstance(key, str): raise TypeError(f"keys must be strings, not {key.__class__.__name__}") if first: first = False elif newline_indent is not None: yield newline_indent # we do not need to yield anything if indent == 0 yield self._encode_str(key) if isinstance(value, dict): if not self._minify: yield ' ' yield from self._iterencode_dict(value, indent_level) else: yield self._key_separator if isinstance(value, (list, tuple)): yield from self._iterencode_list(value, indent_level) else: yield from self._iterencode(value, indent_level) if idx != total_items - 1 or self._trailing_semicolon: yield self._item_separator if self._indent_str: indent_level -= 1 yield '\n' + self._indent_str * indent_level elif minify_indent: indent_level -= 1 if indent_level >= 0: if self._indent_closing_brace: yield self._indent_str yield '}' if not self._minify: yield '\n' if self._markers is not None and marker_id is not None: del self._markers[marker_id] # TODO: deprecate @contextmanager def use(self) -> Iterator: # pragma: no cover """ No-op. Deprecated. """ yield sphinx-toolbox-dict2css-c0c963c/doc-source/000077500000000000000000000000001520354072300207035ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/doc-source/404.rst000066400000000000000000000003271520354072300217460ustar00rootroot00000000000000:orphan: =============== 404 =============== We looked everywhere but we couldn't find that page! .. image:: not-found.png :align: center Try using the links in the sidebar to find what you are looking for. sphinx-toolbox-dict2css-c0c963c/doc-source/Source.rst000066400000000000000000000025511520354072300227000ustar00rootroot00000000000000========================= Downloading source code ========================= The ``dict2css`` source code is available on GitHub, and can be accessed from the following URL: https://github.com/sphinx-toolbox/dict2css If you have ``git`` installed, you can clone the repository with the following command: .. prompt:: bash git clone https://github.com/sphinx-toolbox/dict2css .. parsed-literal:: Cloning into 'dict2css'... remote: Enumerating objects: 47, done. remote: Counting objects: 100% (47/47), done. remote: Compressing objects: 100% (41/41), done. remote: Total 173 (delta 16), reused 17 (delta 6), pack-reused 126 Receiving objects: 100% (173/173), 126.56 KiB | 678.00 KiB/s, done. Resolving deltas: 100% (66/66), done. | Alternatively, the code can be downloaded in a 'zip' file by clicking: | :guilabel:`Clone or download` --> :guilabel:`Download Zip` .. figure:: git_download.png :alt: Downloading a 'zip' file of the source code. Downloading a 'zip' file of the source code Building from source ----------------------- The recommended way to build ``dict2css`` is to use `tox `_: .. prompt:: bash tox -e build The source and wheel distributions will be in the directory ``dist``. If you wish, you may also use `pep517.build `_ or another :pep:`517`-compatible build tool. sphinx-toolbox-dict2css-c0c963c/doc-source/_static/000077500000000000000000000000001520354072300223315ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/doc-source/_static/style.css000066400000000000000000000004061520354072300242030ustar00rootroot00000000000000/* This file is managed by 'repo_helper'. Don't edit it directly. */ div.highlight { -moz-tab-size: 4; tab-size: 4; } .field-list dt, dl.simple dt { margin-top: 0.5rem; } div.versionchanged ul, div.versionremoved ul { margin-left: 20px; margin-top: 0; } sphinx-toolbox-dict2css-c0c963c/doc-source/_templates/000077500000000000000000000000001520354072300230405ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/doc-source/_templates/base.html000066400000000000000000000005411520354072300246400ustar00rootroot00000000000000 {% extends "!base.html" %} {% block extrahead %} {% endblock %} sphinx-toolbox-dict2css-c0c963c/doc-source/api/000077500000000000000000000000001520354072300214545ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/doc-source/api/dict2css.rst000066400000000000000000000005111520354072300237210ustar00rootroot00000000000000================ :mod:`dict2css` ================ .. autosummary-widths:: 21/64 .. raw:: latex \let\oldsphinxcode\sphinxcode \renewcommand{\sphinxcode}[1]{\mbox{\oldsphinxcode{#1}}} .. automodule:: dict2css :no-show-inheritance: :member-order: bysource .. raw:: latex \renewcommand{\sphinxcode}[1]{\oldsphinxcode{#1}} sphinx-toolbox-dict2css-c0c963c/doc-source/api/helpers.rst000066400000000000000000000002201520354072300236420ustar00rootroot00000000000000=========================== :mod:`dict2css.helpers` =========================== .. autosummary-widths:: 7/16 .. automodule:: dict2css.helpers sphinx-toolbox-dict2css-c0c963c/doc-source/api/serializer.rst000066400000000000000000000002541520354072300243600ustar00rootroot00000000000000=========================== :mod:`dict2css.serializer` =========================== .. autosummary-widths:: 1/2 .. automodule:: dict2css.serializer :no-show-inheritance: sphinx-toolbox-dict2css-c0c963c/doc-source/changelog.rst000066400000000000000000000015661520354072300233740ustar00rootroot00000000000000=============== Changelog =============== 0.5.0 ------- * Drop support for Python 3.7 * Reimplement ``load(s)`` using ``tinycss2`` and ``dump(s)`` using a modified version of ``ujson5`` * Remove ``StyleSheet`` and ``make_style`` .. changelog:: 0.5.0 0.4.0 ------- Cap ``cssutils`` requirement to ``2.11.0`` 0.3.0 ------- Support either ``css_parser`` or ``cssutils`` for serialisation/deserialisation. 0.2.4 ------- Documentation and test improvements 0.2.3 ------- * Documentation fixes * Remove empty ``all`` extra. 0.2.2 ------- Changed the build backend from setuptools_ to whey_. .. _setuptools: https://setuptools.readthedocs.io/en/latest/ .. _whey: https://whey.readthedocs.io/en/latest/ 0.2.1 --------- Import ``Iterator`` from :mod:`typing` rather than from :mod:`collections`. 0.2.0 --------- .. changelog:: 0.2.0 0.1.0 --------- Initial release. sphinx-toolbox-dict2css-c0c963c/doc-source/conf.py000066400000000000000000000056741520354072300222160ustar00rootroot00000000000000#!/usr/bin/env python3 # This file is managed by 'repo_helper'. Don't edit it directly. # stdlib import os import re import sys # 3rd party from sphinx_pyproject import SphinxConfig sys.path.append('.') config = SphinxConfig(globalns=globals()) project = config["project"] author = config["author"] documentation_summary = config.description github_url = "https://github.com/{github_username}/{github_repository}".format_map(config) rst_prolog = f""".. |pkgname| replace:: dict2css .. |pkgname2| replace:: ``dict2css`` .. |browse_github| replace:: `Browse the GitHub Repository <{github_url}>`__ """ slug = re.sub(r'\W+', '-', project.lower()) release = version = config.version sphinx_builder = os.environ.get("SPHINX_BUILDER", "html").lower() todo_include_todos = int(os.environ.get("SHOW_TODOS", 0)) and sphinx_builder != "latex" intersphinx_mapping = { "python": ("https://docs.python.org/3/", None), "sphinx": ("https://www.sphinx-doc.org/en/stable/", None), } html_theme_options = { "light_css_variables": { "toc-title-font-size": "12pt", "toc-font-size": "12pt", "admonition-font-size": "12pt", }, "dark_css_variables": { "toc-title-font-size": "12pt", "toc-font-size": "12pt", "admonition-font-size": "12pt", }, } html_context = {} htmlhelp_basename = slug latex_documents = [("index", f'{slug}.tex', project, author, "manual")] man_pages = [("index", slug, project, [author], 1)] texinfo_documents = [("index", slug, project, author, slug, project, "Miscellaneous")] toctree_plus_types = set(config["toctree_plus_types"]) autodoc_default_options = { "members": None, # Include all members (methods). "special-members": None, "autosummary": None, "show-inheritance": None, "exclude-members": ','.join(config["autodoc_exclude_members"]), } latex_elements = { "printindex": "\\begin{flushleft}\n\\printindex\n\\end{flushleft}", "tableofcontents": "\\pdfbookmark[0]{\\contentsname}{toc}\\sphinxtableofcontents", } # Fix for pathlib issue with sphinxemoji on Python 3.9 and Sphinx 4.x def copy_asset_files(app, exc): # 3rd party from domdf_python_tools.compat import importlib_resources from sphinx.util.fileutil import copy_asset if exc: return asset_files = ["twemoji.js", "twemoji.css"] for path in asset_files: path_str = os.fspath(importlib_resources.files("sphinxemoji") / path) copy_asset(path_str, os.path.join(app.outdir, "_static")) def setup(app): # 3rd party from sphinx_toolbox.latex import better_header_layout from sphinxemoji import sphinxemoji app.connect("config-inited", lambda app, config: better_header_layout(config)) app.connect("build-finished", copy_asset_files) app.add_js_file("https://unpkg.com/twemoji@latest/dist/twemoji.min.js") app.add_js_file("twemoji.js") app.add_css_file("twemoji.css") app.add_transform(sphinxemoji.EmojiSubstitutions) nitpicky = True latex_elements["preamble"] = "\\raggedbottom\n\\widowpenalty10000" changelog_sections_numbered = False sphinx-toolbox-dict2css-c0c963c/doc-source/docs_needspace.py000066400000000000000000000024671520354072300242250ustar00rootroot00000000000000# 3rd party from domdf_python_tools.stringlist import StringList from sphinx import addnodes from sphinx.application import Sphinx # nodep from sphinx.config import Config # nodep from sphinx.writers.latex import LaTeXTranslator from sphinxcontrib import toctree_plus def visit_desc(translator: LaTeXTranslator, node: addnodes.desc) -> None: """ Visit an :class:`addnodes.desc` node and add a custom table of contents label for the item, if required. .. versionadded:: 0.3.0 :param translator: :param node: """ translator.body.append(r"\needspace{5\baselineskip}") toctree_plus.visit_desc(translator, node) def configure(app: Sphinx, config: Config): """ Configure Sphinx Extension. :param app: The Sphinx application. :param config: """ latex_elements = getattr(config, "latex_elements", {}) latex_extrapackages = StringList(latex_elements.get("extrapackages", '')) latex_extrapackages.append(r"\usepackage{needspace}") latex_elements["extrapackages"] = str(latex_extrapackages) config.latex_elements = latex_elements # type: ignore def setup(app: Sphinx): """ Setup Sphinx Extension. :param app: The Sphinx application. """ app.connect("config-inited", configure) app.add_node(addnodes.desc, latex=(visit_desc, toctree_plus.depart_desc), override=True) return {"parallel_read_safe": True} sphinx-toolbox-dict2css-c0c963c/doc-source/docutils.conf000066400000000000000000000000501520354072300233730ustar00rootroot00000000000000[restructuredtext parser] tab_width = 4 sphinx-toolbox-dict2css-c0c963c/doc-source/git_download.png000066400000000000000000000642761520354072300241020ustar00rootroot00000000000000PNG  IHDRnvgAMA a cHRMz&u0`:pQ<bKGDgIDATx]T^~v%kR~"EC[)j#TxXxVJRZ`- ɀ_L2OU__4u񏘪6=am+ vlc#Vrv2& ܭ>O.ݿkC֜")6 YZ ۭ9ʌ\e[}`kNB 愥??G69rW!kOyb¦Xst##еC y]~;Q/$ ׽Z?$oE9~_}8o' xWv鍳z"' ۾\*]EOn3%H溷=AK(OOҼ{N_/ݨ8u~ ަ2"f)Y󭫕4zYUc4k ,EQ|cX+,4O.VV/. x벟*n ;Kt=s')tSZ{e񯇮kCfvtOx򛯿[nnu/"+qޟN|+D~b?u{M٘1 \BBG.̴xbղ]o~_eeE)zkxޥd?ziQ|.TSEQvn]lifguV/bM(dtwǺ'*"&gz$orRRu+'ԍ\7~xMm?:%[2 OO@NyEV=_Qp0KOkw.]yg@zoн :?igEWB7 g 㱴l x1u*=~{´7ُVOeXi{tڄQZbD}:D]䌁9iҟ4D+#6e{ M%E9oSyM-KZ?o g wsC髶V 濖ytx39Tzyk}AșD#g253Zkm/N˛gn660K"}cǪj#li}at۾*GN*p@Wj>vƥL :͉7w[}z}_U` i"nݥ>!7m2|Oj(J~k<"B0X>mԣ]/춡ܥ^*ݕw~rf7S/9t=wǫwg R}wrFzT3yWכ*&Ш׷v.Ҷ~Ӯ*+;i1_f i1a\%:ު5` NN9?O@19lNmu^bꅿN~Yݵ8b2(Ae1J1}啭~D4i]SyT/g6/x=YvT6ҿ[ëL<%\CSw=NSM$4\R{Obl74LQ悌'.L4|IwӍj7KM蠝0]{>{M_TuyƠf#r8܅43FYvKBwZċ>s`՜wkstvɐd gSBotXUdGma|LaazD!4imnScVWy'ʻI2]*]lOiת3%쀗e8s7ZEG 䵼<7< Yt?2[/8(̇Je9?Ȭi9mО3W&8G7qߺҿ՟ZM'+ ץטLlu#29qu6+g\DmT~*h]_]<ۧ 7wX: d}8e)Y(7RcGB=ق0]M2w|54Z,iWIcSl ώ;7[|uYNK$쭎a41t;Vai}x~K_7 EQ}'k_.o_.rֿf6Fa KNjR۹dm1B:?}ڥ%ES{!}k G> 7ߝ5S`_d^u]uo1}hRƨy &}VJŵ]uA:^]&/P>/7KykADYgwD]w%aoFg51SM=q].ctf&#r:9g+*ys0EQcU~RS5v"tIS@-OjCܙqĩVN'I G~2uG$[-@/6~(=(]>9ͺ^~$ z~J a깎8rͽ'˭KCdx翑kۅg8a깇N5M7:ԥm/Կ}znIKkSzŬu""4i]rrSz^c?79-BDjFOrb7z}޲}e;OcUIH'(6O>x5E+Sʆ(W%Ej.~rO\_Ǎ^ww+KN n 2,nr{q^)sKw['Nu;3p9zy9,w-=fVn *NRR\QFD'^ ucͱQAyw>F6Ͻ[uͩq5dRs1ܓ]o1"Vf\k"VB?G<|{rƈXqbߢfoV'X59c@̸|V'X6 Vf\kLXN wӭ۰hÚ!kO=PHbסkO=Dڢ km?п'ol51m@hlLXN wG@Cv? #.XӨbtrkmXSl?Z'~Z!km /H~A]#}#~w]u߬dcY{"dW@,RK}D!kmO߬His?_Q];w:?)K|xiiyb¦_s"d࿦՟y]=-wiS/!M˝^ߟה%ׯ9b^`_"vm͉5G6w[v o!|Hסe\\w(~'$IrxxX$vTT(:IWF;w,YrvH@IrC3-S6R}#0Xw!~:hdJfhhHz&V!WtCC-)`t٦7D`%177C=z-hh8j4@CzPT!dC~899ipp:/~d X MNz{pi@hhRwɾ~m1 X&MMMMM9q,/;=пvl,?A_oѳ'GơH:=1/X? {+Yz@?x[V:[೩ wU|igsGO{ĵUˏ3rF?\:UJZ)<ݞ(M:F.+Q쒫WMO1nLH\Su{UjN|6Ub-f?AN++^,ƝmMʙ˩=WFIk{0$ݸӵWʊ a`@d8I,bGx{ӧGzVu'ݛh3 C)uۖ*%N㤡HbU|D9OQ?O?wdu6OHO9r2)͑i;AwR)Ț=vuYb˵]jGwZ%g-kD~aa|V @su( mNQd5lYӧ)g EJ;\]V^Ϙ2LRT^QVg~Ͳ:[Nr?X:ז%ږ+My2JKOV6x_v']Ǿ*Y{,8uhG4RUJU^{DQm7&vjC%}N{ÎL2U;Z<4u͠1ˌlBƓ:ҿFbiA(JRz_L1X?pcnz@R*LIXum afN2| xk5w:1j'6 .eVꪹe_@DgUjťC ,bvԩrU|dƧ6)u\Cj~ق?Yg ?6m=zF`ȑJ특f~sxz6Ul?U:XړnUX}ϪTnLZZI?sdr“͠v蘻Yt`QR^FubK辺QΣ(lg%(2"6@*sk п&*eG8ȞBqLHO@u5?[BZn9[4z1<WjC%Ug׎. Z*_֓jqbUj'`#%뤊U]]3h'^!_ڵP#[(u5g`תT]qzAqOd-3;z^<؟q0f?ܿg[;С:5mTRuɶ^y0Pj]cw2<PA2>]9܉c?o~/DS5#5;-+LӃ6hP5CEQds~b١3uWjeE߱Yhu_YM?Tjyq?j-pmT3,+έ# {祬5?܊K=jRP} =yHz g]:؏Y.6CVUsGiiuW;֛kTgtV-Q@dlTdŹ{|N(bU2;ܜ]|Ԩ3{l&/w/+f~SL˧:tܛjTTX(*7ב ItLOc3FS9#G&c3CjԀFp]`r0jn@?FU#CC?h+ ?jO'Rq8.:_G&ħiW8M"-q%q?Xw,(u?"<.Y_ݪ3U^ayL^ $xr-EQd' %ye7ߚ?E 'yZOr!qp@UiMhM+f" ^Ƹ©r<=--& #E0$*Q't#?# td#6U5MX9)DZ蟢TE1""N)Ga+ga*SDVYH㋙)?8׿W[a' "eL+ܼ(JK CYRb?&)ic2OK"HveMa@Ϻd]Ւ ' )$kr4f&O?e0zЕ%ֺ$,e$[DTc"kQdֿv`R}H{{T{2]@j䍕yh?#X íGOm<g.\))t7]L'"^( bNZ 0/В-qg|?~Yer޿Rf=*9TqM$k*y"LRT^QƎbI0O@0}l!WS,@pE~f=2eBv&x61Um3%qB1vbg#StEDP^V,Sju=0M.#H<5Y=ű6#gTISo6I!jxNP YWlsE$ eWsԩJ<ׄvR6! O4gX'@CK;TFV%e37XmiJCFq8=|- {$ aBfYO~HEQ-AtC[( eWHZL猛]档ZW{AP9KX 2iE棨blG韢t !-h{ʱms]hv_hI^hit?nCJ+?c/+O H}RIYz,LҠ]6a^TUR/wNg= s5ɭQD?zoC~bŀgHQLzt78EmV&K-8ۈ]@_yVLd>ONlwԈMKѿ]޺SA.=M;J_uk{}{PZ4/?y_ϡh'0W /O@DfY,3ZއjZjn^Ճ}Kճi10$ߍ]v鷹 ¥LY_?P# 7U1 qt?@)7ĩw%Hr *>^B?CO$k…b9}H]+ Ngf"&A^q~+tyIED%J\,?+>2O( ɒC:&=[^MB-}, *:sΪx7os.@^KߧqRwG vvjci@$t[wږr]pDDO:{'uS33zX83333=Za0=O;: `4I$Y@xtEj0 R?cR{Hsss,9u{CסW I?`=z4;;,77oB+PYsssn~ܺ8~< ?xGnn%g~BeѣG?\7og~`%$gOʪʪ??9𨩽 < 5|[&r@-<^ P{B}[&ZyQ@isv.,b-vڦ>O@${kT 2?5˓>/BLz$3!_\R.a%&2Ev4)8\ jז% am=5I!|I>sAQU Ł:km-K  ĬVtIBARycIJ' N)JңVBR/"yr#(=nEO9%x>C6x"qT6xtR~er{+O~]cB/ bNxV~8OT/r?]+?YRZ( $xR.8_^!qqEY9ʳmc%g:SVZMTdk~4 ٘{|ՙ|^`R{%A~bƛme"%=YYUQ$M?K5\]V^QV~&;F(\\ O%dW1)O@VW2E.V\sׂY( A|怼0'H پ7L@K,u[A0O^d:VX( Z)U' DdaZpd,'εMďg@ӱLTR,fz.AYtVDdae~eDV2EDX~<7\ЖEMg= Z~ֿb /}۔9}~J+"WvZ]zMOq, 4j7ׂmYji͏ x!f랙M!]mӔšר Z(Q/\CѶ"%V Uz}r[e̳2r vWS/HcMS/>ʾПN||r4$uV4a}`A/CjSme5*YD.ݏW}v\w>j(do?i#SG3յ)=ՁH}_'e̓2V{c ^^9A7FSn'߼3c = dwq *eҿb&տkT63Кd'אVKj %q~aHûF:^(c cz͕@k}Fڲ?e}qϮі% ,mtUb'7Mֳiյ /筪jX\<$=\xP]_ˡ:^(ң63ˏ+1<2'/뿩Zqt\}|uu5F՞٫dC7pxSY1b^>UסDUҿMEi 48[*GyjM0H6M@gEH'R=WUoKZ8+q{Qzswwq-K% fA'MR6ik?]fhd7ތK'ɿ?w'߾xؒnvMzԌA7M'F'cCCMҿs>vsK˃ݣ(Hu ئP4 fϹj'6@sIkʫ:L֤Źvw-ok$RX\}gZ_w-/'J6X-N 7zE/C} }}ohlW[{6J`y gd|dMUx)3f.VHC7 t ^qS.ZDY/$ yV[scJrNy(/ Y"F L5*FW/7/z-XnX<$= ?2rFqxs du@ѿFIJC'ȤqS[nGJמ:# !xgM%dWTԞ8 ㉢;hx_y2JhUQmC*D ^H|~,@akyk֓/o?(F@ce5-JEkMaRLr|q.KR+|(81@HM(3U ő"B![ZP1+ qkyz8}ér)c<~gFD/~|Uo .rgJOzq$x)=٭u::U쿺 Oz}^9$<_,)U\ncZ ɋ4vpNR~008F,jw<6̹r؆pM aHTz,Ѫ*oK䏻kA*ke+der@B(DZunUy!|/,ARir~MjFGi[Keļ6On9_ M'\Rk+Sp?[$9S9x)ܮ=`O 7DX>;wu?)uAUQ+X!xU=*RoOYno ttv+ ni/1؄r^)I׉l:zQ9O >*朗8o\s_lOOwCb@vyEՕIa"B{@y;l,?B;_o=I:=Y˝dq:_'x+?/CT*F)'JtPx|P9*1&@RX jofI3_48MTk᱘ C= `?yK:%l( yK:Cѣhݞ%z[қo{z,&A?aǵ[?w6,?Vͷ& K??7IVG'877ߡct ™[ns!?>Wt tݎn@K]E&&$977˜3[K9n~?lOty ̗?<~=%IHFQLOO릦&u RRcdt@6CC?@?C?@?C?@?CCC?GC?@?9l|m(to[ W*Ԯ>2iSL3k-oڿAڄs-EQoLi >+%]Ob@??K99ZI;Qv+sz9IV-FK?GwCgMt*t<ݤXX/J/~V8i8Uc"#;akydzr 󃝫]/*lD7~Ӟg%gv;ܿvRgIr/֒ RbvRETSkuFŪ$i]mfwicTJVתCz(Vu>+U۷r+ZG4jIbIo?<*aTo=?EQ#|s{(f=RMQZsi'ۺٓIӇ%9+>sx0f!ff¥(J;isڵYV_.WKz94ܖJS}joFELc_C^vl鯝I(#|Ư#ꘃ=lSx}eS~OmL:|_~`J0U*Ul*SX;sM5_]i٬x0;n1x/t;[tiLFsV%/Cyk)jY9&7ČHFNXV}*Uo/nօI':-{MiPx-ƸjJ3joMwgO?[0Q3}SR;߾GoBˬEQQ*eB߃hnn50gl־h摏 v?5IZ˔v{_r@?FȾS]OcKjk _V(jfTyh=I'Mnۅϖ̰v?y;{6(p}rX|`r<(ʰug;s+;2ފ7`o3oOSWlxBu􏢆[%xwfO-;L;|;C,9cŵn,?5lCRcGOF6[tvs$KUtJ?OՒ.uӽ0_ʼW`)v 2 sJ+9mzӺ3'oT/)_S+l:zmgHkS{?CT_3:cD;NCCCF=420azA>uo߀AOo}僛Q?C|o0O u:ӿN/T?eI,;OaCno~%Ǐ'tSS-]Y+]?{@755  J@ H~wꡡ!VK]qu<@ VՎjZV;0pd@ ݙ[t9#JhhGGZ-- ~lیCpYnZ.@ _JN-O^4eLw~ пc+lv\>֧Bgff]=YJ׿+\6+E{⶧\%X-~{z}?9 -f}#078fDu߾C*ޞ]v0?.ܿvx?z\jc?~kzϛ?:Nd}HCt_YPq̑l#cg2l33:a?@,j Ѝn 8h bbb|О۲7o۳㣃+ر#{/׸p7voޖy[ݛeoؗy'rٛwaҡݛEdw_:mٛ~Ҝ=eo9Q/g6qr{?{t죏SkDк3J]Ǐts} yfiLMM׆TS>عy7F6>J8?)ssp޹?;;}_ۧ;7肒}⏿ͼpOvn޶s#0mܜul݇?}yNg[oyy[e~߃y3 n0vSM\?@LMwa!ϻwkMξiw殔>AihwJ`rvecb({'w;HƓ>ع#jwn ?M#V{S$NvJ%eo0wv\`7vSWZ/|][l8>ؕZxeJ`oܓkeJ}uJ3%}+>-gLσؙu.ٛuCgzBY$zz]w-qvSA]n%_4ɮTɮTɮ4k|Cs8U+T#K|R"huobffff׏$Rصd9-J7{ەџfffffz`W?+wv,adV}^Gwp{i0#5z䃆/reiꇟ_wtܬIii:DDaiR%Rx '$vz?OH?oB}LDvݷ{wJ]z}累$R?*o#hX'Jb+p?~ `o[6kklPL>Vپ;1g(߾}/Gl0p[+p#M;voUޝpvhVVKrͷZvJHԏC閝ޙ=-i/CVBah\ϡF@_@ lc8dϨ拷o߳cἏҷŕ9[oe時l߽l߱{[>*>T6gwo4.Z^d|U?͍v69vc?uUୟ+|Yt~^M񉪫j/?vqƿ2Nܝeu>쳌=-Y>:qt7V;T5לh8k X67ʖmsNn˗mvSc3qV8SOLп- `1}쿷fUÝ>mmY2ǵM?-g+=?0׿ݠ67,=F/ߟ[5Suk>ys癙>x!c8[f,7&>(`yjf10=x unuMx~C߅Ѡ?9P?Zd?峁,j??_:/| %tEXtdate:create2020-05-24T20:00:42+00:00v%tEXtdate:modify2020-05-24T20:00:42+00:00TtEXtSoftwareShutterc IENDB`sphinx-toolbox-dict2css-c0c963c/doc-source/index.rst000066400000000000000000000100301520354072300225360ustar00rootroot00000000000000######### dict2css ######### .. start short_desc .. documentation-summary:: :meta: .. end short_desc .. start shields .. only:: html .. list-table:: :stub-columns: 1 :widths: 10 90 * - Docs - |docs| |docs_check| * - Tests - |actions_linux| |actions_windows| |actions_macos| |coveralls| * - PyPI - |pypi-version| |supported-versions| |supported-implementations| |wheel| * - Anaconda - |conda-version| |conda-platform| * - Activity - |commits-latest| |commits-since| |maintained| |pypi-downloads| * - QA - |codefactor| |actions_flake8| |actions_mypy| * - Other - |license| |language| |requires| .. |docs| rtfd-shield:: :project: dict2css :alt: Documentation Build Status .. |docs_check| actions-shield:: :workflow: Docs Check :alt: Docs Check Status .. |actions_linux| actions-shield:: :workflow: Linux :alt: Linux Test Status .. |actions_windows| actions-shield:: :workflow: Windows :alt: Windows Test Status .. |actions_macos| actions-shield:: :workflow: macOS :alt: macOS Test Status .. |actions_flake8| actions-shield:: :workflow: Flake8 :alt: Flake8 Status .. |actions_mypy| actions-shield:: :workflow: mypy :alt: mypy status .. |requires| image:: https://dependency-dash.repo-helper.uk/github/sphinx-toolbox/dict2css/badge.svg :target: https://dependency-dash.repo-helper.uk/github/sphinx-toolbox/dict2css/ :alt: Requirements Status .. |coveralls| coveralls-shield:: :alt: Coverage .. |codefactor| codefactor-shield:: :alt: CodeFactor Grade .. |pypi-version| pypi-shield:: :project: dict2css :version: :alt: PyPI - Package Version .. |supported-versions| pypi-shield:: :project: dict2css :py-versions: :alt: PyPI - Supported Python Versions .. |supported-implementations| pypi-shield:: :project: dict2css :implementations: :alt: PyPI - Supported Implementations .. |wheel| pypi-shield:: :project: dict2css :wheel: :alt: PyPI - Wheel .. |conda-version| image:: https://img.shields.io/conda/v/conda-forge/dict2css?logo=anaconda :target: https://anaconda.org/conda-forge/dict2css :alt: Conda - Package Version .. |conda-platform| image:: https://img.shields.io/conda/pn/conda-forge/dict2css?label=conda%7Cplatform :target: https://anaconda.org/conda-forge/dict2css :alt: Conda - Platform .. |license| github-shield:: :license: :alt: License .. |language| github-shield:: :top-language: :alt: GitHub top language .. |commits-since| github-shield:: :commits-since: v0.6.0 :alt: GitHub commits since tagged version .. |commits-latest| github-shield:: :last-commit: :alt: GitHub last commit .. |maintained| maintained-shield:: 2026 :alt: Maintenance .. |pypi-downloads| pypi-shield:: :project: dict2css :downloads: month :alt: PyPI - Downloads .. end shields ``dict2css`` provides an API similar to the :mod:`json` and toml_ modules, with :func:`~.dump` and :func:`~.load` functions. The :func:`~.dump` function takes a mapping of `CSS selectors`_ to mappings of CSS properties. Each property value may, optionally, be a two-element tuple containing the value and the string "important". The :func:`~.load` function returns a mapping with the same structure. .. _json: https://docs.python.org/3/library/json.html .. _toml: https://github.com/uiri/toml/ .. _CSS selectors: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors Installation --------------- .. start installation .. installation:: dict2css :pypi: :github: :anaconda: :conda-channels: conda-forge .. end installation Contents ----------- .. html-section:: .. toctree:: :hidden: Home .. toctree:: :maxdepth: 3 :glob: api/dict2css api/* changelog .. sidebar-links:: :caption: Links :github: :pypi: dict2css Contributing Guide Source license .. start links .. only:: html View the :ref:`Function Index ` or browse the `Source Code <_modules/index.html>`__. :github:repo:`Browse the GitHub Repository ` .. end links sphinx-toolbox-dict2css-c0c963c/doc-source/latex_mu.py000066400000000000000000000002751520354072300230770ustar00rootroot00000000000000# 3rd party from sphinx.application import Sphinx from sphinx_toolbox.latex import replace_unknown_unicode def setup(app: Sphinx): app.connect("build-finished", replace_unknown_unicode) sphinx-toolbox-dict2css-c0c963c/doc-source/license.rst000066400000000000000000000002121520354072300230520ustar00rootroot00000000000000========= License ========= ``dict2css`` is licensed under the :choosealicense:`MIT` .. license-info:: MIT .. license:: :py: dict2css sphinx-toolbox-dict2css-c0c963c/doc-source/not-found.png000066400000000000000000001352371520354072300233350ustar00rootroot00000000000000PNG  IHDR\rf'zTXtRaw profile type exifxڭi7sp`?C)J͈M*3wÃ__S4Kk{q3_Ow>?h]?3}$ׅ}>9"~|? K~\ꌟo)_S{~7rcvU)ƓBYA.u|KH ?nO7ui~^oQ?A(??|pv;_vȕ_=exd{[Ww2?"8/?B\rab9",{\D(Wv2"q.}-}n;X-_ޥ- ޾\O^E@[y?6ٸ?r+8'^W[g5c }44XyL9N"JEƜREJ=-kԷ&QRM4V΅iȡQRɥZZ1Wz5\KUhVZmYmXlŪ536z ,֭>Ft\kwfiYfms,gUV]mk&vm{Hq)v3.vͷz۵׿ZZ|]ڷKIQ̈X́7EsT3ߣ,Ȣظ1BO#r7W9D'Q"BOT??6\!Ru\[ 5pmv[]`c-[s%YeS@E"t_n1˗YX:@[ -a39rA ;Ni|Ș8)v n;+ẳZXeOn mݕܜNf< +Zxeo m7͋ mQZllbvPՕMrpɝvG;7xa<˧0oUAkSl7wbiu?qu8 I];^$N7-4uǽ~lM'"g;jxcz\Rq7sʙmkMccCڷⵉerW$My5lv<~iqJ?^Ch G"ms3;';+}%|✠?˗:UQqsYi`߈wA/&u)KD>@髺`8 ,-4"X՗I kZ wQQ"apR=i&( D uM %+][ `CvZn(&_p91tC D45[Ko0JJA:KArHkl]]K,`0J5 #ut!50Ie3¨o2jj@yAeM̍<]=8C#',ԔͲ39KjS9~7~pB8Mfz441*'3$:D*\Ҥ[m98eAP}*DDgPX@wqEE6D!%>ˁaPFzHd--CZd^|R!1}^$@u@c5G ;UlR4ãS`w(}ϭ"+7&zdGRr&uo&㣜LqIAL CwLM5$JSm~k2R"Z\Ky~-6 Qx'-aO ޥ>dl=wL $,9w}ٮ$D< cP hضc"o +8fPb6PGQT.D|(p;W*F-`vC^0$s(r=H(uX mr{U+`z+,{?X|! FFvE<,*Ȧb:L>|: |0::]asS!%Z`6И cW!K=yj% Hp]U =@hAסÅ-~UEGU95qCM.79]dna%2uYяcb@B2+,~U)C7!rgNs :"P@Xw4Rs< ϋIO‚앛)^8>APGJ݀x\9$¬F(Ķ`Xz8P(dVJRcB3K=)9/ J !mEq`U$1-W?:`i"蜉nMBHjJy ѽpAmpQ :OnLn@hlɦB] tL@f#P#؆@7ʹRD cXjq“Zы?/u`{SCg(l|s5Q^M蓪C *;e t>0?zF=u; I5^6|퍩zvhrd+ω]'Q3rI3q@|JX+Pe&u.7XIdK@2]`A[vȳB^aM?IDw w`YXUVRsd4a+,Y2j6'Rұs(^Q})V PKKBS͘ig>`>^ LF6LH,!)ܒ`RVTJĤ#cG1H,. d4 0Mr1L`&0j  (b~wc&O!SPS'SʞUe!J/ցCpC#t[ 7` Xe.Pˡp#+ 1N+j(U&D}?إP1#@ub_)&|/A&I@ wP@HVսE ƞ &@,Sj2B x Ԑ;.wQp d̚>2kx03Fm ߻!>f5F T VhsRx\c].VP Ջp}o?hP ` "\hlU>|C+a>^[D(Nl-=9y1~?6BRїμ nCe\Ed@e}o)6$ N]#R0cJ5v4Dx;=& $n+-J2)oNnIOjsQV*O پFe颣?l @A%2o7 _OOj9CbP@U}kgx?t5חP dƀ#WlT %)le@41{:mAR W9Bj#dދ;Ż'{z:V$|TP ]HqEꟍ 8<6 oH8.`Ȫv3aQHq؏0u!Dē;! $Ux+LT(a|($[诮sSN'6 utGCOI|*q.G # ZÖe@ XiE2o8p.`$ɱP$}%8W'ǵErqYL7 {Ar~>RujR=|Xod ^'o]햬ViLI!/L|%١N+x.f(= nC'zJ0|()l.0:V'Vχ-@Kݬu@Eg[u0V AYƈR5jՌb)yg&ubFH-x%$7K (HM{Rk5 vV 9AFR`Yt$jաKӔH1'/7rCF6?BA0rXæ1K)D~՝@$x`~b$u4 ,r-Td"z؀a/#Qi;o ^w\S.|8VPg7BѸl}^ CVCl!`KL±ItSE^Q4{{HcSk6hӴ,摽TX3!,,f%h8H]é> @ WJIp7%})ʄq'H ZhS ~b-#SPV*b:#ʝ(p;~FԆ w.OڄijFv B^u%fE|5ƜΦ6u"1^Pf-JIƨ)c՝O"t#+j06+@U{!H@$2[}%nT~O' ̡̹ut,; P5V$lל¶wO /ҔJuXܭWC|bB!9`C}32_1Xċ یEJpB[BNXuu2jDkAIXu-OI:V )|mMЬemHu#܅FvM)#Ө0,S u^h*:>P 9fk`hI ٗF6VMhס,+,WǓ[PT-0]w{uЗ5=;n跇bGٯI/piR4XM~Ъ|QVm͈4r}ZY^OEv }#-`܏,jٽ^z+0!L># 4u*͉إFxSfkB5#([-bW#Vק{6\-$IsL۷KI9NQ) /Xːx'SZY*!Nt`n҉N0̐cw>%2pXt DJ(V$ORpvH%Z$b$χbׇp`MA]ojF2KT΄ѼS٣o8RY0+g`~&I1,P`eQiXt:SjLguIy؂z&*t+%BɢTnFj#X-kZP6V6:IKD>z5u]<w)gB>Az7#}H:ʒ`P H^I:-z cjj-G=j(D `*-cUY:$Ϙ !0buDsDP{F+`~o󕭓&Pp ]Bra_`C 1HkZ8iv7!4}ʾRE-]6 WEgic7R%DNs:$AՁ+HT y" HS=P&p> ojabȠN(J@ڡMġcj{#~ mEG@/ULP2']vqjlaLrP/'v;X< jq q#(%Xs",V1pT^0zN*ȼ :1E畝@LuA.[L!rC3=@] n,ʕ@>#ܪEӃ [k1X1 Ⰻ}4|S䁘,N7W;JUи%&?pdl Z}ǬB" k|9_AX|e`=%n¶8(b܃1^qh:u2UQ&=:6tB8( R騤hX^#U5U0`:Sf}G(F&&k hQD;9p;?utUa/BNf^М zaM,HL6LA]V\}d2N)n,d,`\UxE%VQEѠ2F>W֢8*s@Gױi2 RU(advAQPax8 i"8AԮDlR!5WCkhbjx"gf$8:gdDvқ(6I\ ,Y̽5e 404TƣŖ'ٽC+sWHHD6J뱌DjۓSQ7I@ PaCyw՛:#5% ԯHBSXu5_PAʛ|5 \WOد]˧ϟp*[uj_XG2u>,g0(rOHI{еqޠ$8˵@4XQFHex{seМK}@I(a@Q󱲋겷4=lF3mמ3)uNg_T=z5x14VHrbYK33՗@8;:7pnGXj j+鎻 s(֐I[7 C7ҥ0Xwi*1H۔m_sE: )G@U ۘIOćmL`FN *Sj|7Zlb/Au|ޱ[a'**a7|'lhYPzNO}lDL~=^IH< Kܱ.Uk1u^b)P!l v6k^{ &Ltҿyb㓵w"{zQTBPtH'TMՉc4]uՈ;ꑰ <6i\R )WVɖUJȦHagu { ͋ă\n\N8Jx V XI]'yA0#P2MB'H6u z 0gD"Y ,hFk иyoP^,BU ܗb6Fjv_̦Uy`>zJQchbXt`*TV$?Q6o*T2QhV+38s;2c«Џ8FӥIMBa~.,0v}}l53d+ny>0"ŘX^w")@37cm(PzL-Ws]r[_մAe=d!бՃLW9AƹD=+eZk"A _yHAŅHEI!UzUc oBGɡNy`&^ +ojԳ SU^N DZP=Y׮ 6ŷ{:?8:CE;]j: =IigHNt{[J3S-CB+ >s]|a:_4x`[3zhr)~򃇬ppp`|K&Y zpU!kӱq*@#er4&GIg֍@ЂHpMBWHgE9#,K0JqF:F $f] Z,"h:ܞE旦,EFtXk _^~ |<)5gVA SQњ5 E˦ sZ71{}d꣒P؇'ǕsOކ$B1YI 0EWw^I"NE$z< ٸ;"`p&35Xdz^(X[q>- yN"-Wt V9xؿy+, YH0=daXА2u?sV٨`9.c}}Xid6VuڟœeQ'ٺPQ͂&@=!`&^_9Q'ҧ56kȅt.a!fAHҹ2Im'5/LP?zI?lR lZ]0@|h ^g-z/W#thIf!lZFm@!V6U #B]1$xԤ ?2]qeef&=O ;X)$qLtkҺ'{a$,3fI,b "Ȩ liIUBTAr`[01%E@q>.Ь;4O3p0IzŎm⺭{0dHJA\7[g뭵 C]nC`H>3~r}bKGDۗ$ pHYs  tIME#? IDATxwy6ٽ}z9G& Hjۤ&_nt/ݐ/$`'Nϗc\0QDPC]{/k?YFBسў=̼g9Yr,g9Yr,g9Yr,g9Yr,g9Yr,g9YESpף> <"h(H0MH~wNp9W`UʣWj 8$cSJ|8WYp%\{j8E/S?s(@WG?_{Ʉ! # vIFRj5T*J%eeEE4gR?𯄐o޽\yG̮GyMo(uvݍv!##hB~J):j 2 $R,$iC(%kk>`BbXbzzzގD"uI?JJtӘ з|)g?pDQ? &xraժUX|9z{{/ߦL㘞iCؽ{ZtOw /֯[Wƒ%Kz?PhX,"cbb8 ޽戌>~@he,]>4 ?(FFF@)]gO3GtX>1@G}}>JlذD'kjFJIIrEMPñ1>}lv1_rQտlX,۷cڵ D\\FZERAvqѲBF)4 r9R)LMMԩS^0?vQ#l"Hի/g\.T*T*R" "rA)"Ncff'NBvG\'np8n k֬Y342X,.o~ߖ$IZbRfggqQ.t~mppp)G_-lex셾2ÈD":RT*L&)bN._qkY~=n&E|tzy<-Cq1AV<Ν;#G,u188qQu=Wx 3"F83á9+bV?uёBObĂAP JE^oܼ:k7c@#zhoooHcH&~r9ݏcpp#vx7 -o0}݇ަ7<2 #YzdOG 7v`;z<[JoV3`mGsA[oWW^DѦVffBzñ+80^|'b)x.yIp:~CN]Rwu_RT`\ U c]=bÊ]Ov@ ݧZbrrZ 'Ncvp!pbUV;c!J!J-ju7M㉗&0^Gt,OCt8HB$I lJB)ϗB)ɕZrJB@܋U;u/^$ $ [h`rrJcccx78∠ޕoݺ7|m*/OR-f5 N/]b["<ՒL9uIzNsTs6.WKumǢs~?:;;mCRLOOX,b~~/)HeG   Em߾7p%*˘Ztӣi|y0N/NYRW[t=>.+f;+gfS}sپrX1;Kq\.l Bffffo>nD鈢xU,~7x#mf+\s&eF|;5=9U^$M<;Rkز7,Yp@^}饗ڇwgy睟ܮhpۆXs;UW6ilZhp! W︲kx_ ֝(]QDpV_L1}m/Qu !x]`|yg(.1VU5# zZk/WcSU9=-M j*BE H@ \.P(@ `w]v}kϞ=+kV.Ԟ Yǎa,[%֯}c`ew@垫z֯./${Y].TkdS_ FW"@ xݒ%[VkbHCIh[[l2fS|ero$K rd"H4!V衐uڼP( Z"7^޹s=sNOxG"h7w}m-*B:WxYn4 &}uj9gA`= hs^˽=zjR_9 :ccLR& {ck^J"4Ai߳gӎ*n4o߾}mIږzl$ ٴa٫^G%B>u'[tV_u3 h LJ vEojsA۷3p1VVqk]J \ex{!tz{㚖[tmz~Hg<ѧtJO9B4:Pz#}]qpBn `ݕxݾ`PX,<{rs|3XW 7UHUǞEB!0D/Ϟ=O8Sv7vܹK.3==ݬ$f㯼 /IiWb2^~ T"dք3O4?! DR&"gGU :3;5 $nt`T(FB\2˘qe$q8aqUJ)ժP|>mZkk+ECw֞={N:"VCCC7\f :anncDŽ}.4%6#:6w?qݒݭ6j4(,'~=z<gC(w8,N@HkdP@0/#QOpV|2ZIa]V ۵k޳g *!7`J B;;jAjc83_^ni c6Bވl ѡ(z\f#{NeĨ 0HeW`g ˽Ii@GKtbWəE Fؾ n&#rPA\,!33@#ݒ.g}&۷1cffƶ1k{NdQ@`m\U;߾dsp5U=w.ט "LL*7@0`zc7 ?r%^£KB,̑sƶzkFN+WkCCC){ؼ֭CT߿s()|mͲmmqaْ/p϶M~gb5Faԥ(_YBKH41}E[1Si_\oBЎuK@[[|rͲמ>ċ3+mG[[nNtA=r@޾};|>пYt}qw遞==b=yuʼQ6tSS1{fPA7#Mk1X3ݴ <AoumE4i^*l7?}Uo*eQj7(eo_B8??o Ӡ{-#>{.6׿uGz? 7k-[v[Bдw^Ɖ9k2[ɯ[:5%r=kB=g6`1(D_WtӅ[{nQS(F g _[~Ԯ;cmK" inϣYQp_7q,ky,2]{U$L;ƈ.'@Xg:_Ż0"Z.+O$Jo?"z?{j0ri(ۇw:"|*G}[Xb)Mvx`'? u\ٶ̄/ܺ ju̬FCwЕ:'L`Qx S1`*nU2 )`܅@*[q: Xr.NW[M AQw,PAG/S4L=CV^ I, Oe7DHc޷D=sKJD\~ zk|N} l( ZjQGtd 0l^>l8j2!lͪ%oIX.⿼0dV\h4(vkۍ5kֈ544L<^ݼ}Uح_:/ʹtI`( <ՉxVns=gFH8Aa5bc((S4--d%3`Yi0SW]S(jhhBs -(J((Ȩ?gE`П_6g?8NRj1 200`71cc 1>ǃ+W;?>ǷZv}|_8-/a: pf)H@G_ =5 ?@w2`d󙢣8*LxrPS FF'CW,L73G2wz(*ۢzZCD3g]F.oZ+Bn^%I Є۰i&@_J iATW}y9yuHBU!` # ;N #}PyT6j}WM%ЕK^{Q2+Db>eVח.5d\.2cy|XZDڕ F:[B '̌Ti>@ P.o{U~`ә|B gLJ4)*>8!lN0'Pb^IⓉN6CV A-b c~Gq2A)29vGoeGٺ<%@qKSԢ(SFBƬ Egg`Q!NVm#HcU’1ɗ%@E/n-FϿir v-r#>G~m4vSc1)CV߿5#fkCxV'I2ƤfLa%KϛS0P. =vU9h<]A(_J(OSE`< 2>7@\9H9Gˡ+dRP>DžX,2Yz=s88ӳX,^[`P&ۅYH r~FookSۮIm nRX źSFqa0]42[Sr ӂ̼/3!@Cv؉_m=yLxv.)ro$ "+:aS %0 V-ف>OHd9ꓟ%G/l{ ëhU <57G?Jz,JTWFD~IVD"P{D-!L;J IDAT:os6u'x(| DQ0<ݽ?>pPpr_8GT{ObLeF(+j֡w LBE܊#sѰ?͗ |cf DQZ@oo/NnJu9b> ~7oXzZMi:>Dl }<ɚyeDq9M(D?3sB 4BP)Gy'PfE(R=Hx΂ġ)X*Wx ^(7z8q.eKVUR>zooo7?=d5^n3/\q J|Yx%@p)Stg _׳~1:"r$98yy^[8kƵi|]1sR( u RQ51s#p@O&_֚y%ф$I;f(2c)hTd9&̱ڃD L!ڈj9P6i 0z+ėmK]E%j{ߟʍ z'RIM</$IQK]H* @ NѡV;b(,B%F O o΄mqyok0{%`I=fHeڿ)W$ /QYc0*=tHxac%4׊~dB#'b#Y w[I>%cR1 x2W4botu sN\]Vh4, ' 2]X_b044`i&l!jX#|7р {CS6)/.Oc<93Fޗj@J؏h? `@5.0u L+43 uAu+س{^4}t zc{bjORboUpk~~("xB]R ?x@@Ju;cko}`k5kP~aai b!5 ,6X.Q=7@&U2F,!Dy?r^8x2n6{*j`|ɰ񻨮 s Z+eBO(iH@Gk߼t6|I|/."o8IB{vtGqXh)1[02kM}pg"c|ʘ0&_W_;co|7Yp9 e*5K`)a\E`ugL `O~hoe!Be6ͤIjo%"`vTm1K c #Y[7@t(Eth !d#ڗVl7ohmmՒ7̍?*N G<] )!>3ՔeY{(b~<_ (S(E9IEKJt 6Lyxܾ}]~:!839!'fOs!DB[%3>B=xAԃvYOMnP[кEg1>LМ ^koPj&I1j(t2bP -ԲjQH1#G &T`h\Nw+v..` ~_Ek81k Bv5כkȡ ;5xNM)'[%)W<' SstO)+KWNjuoqi5Hv" 5sӅi!8, \a,\Ssed U[` UؼJG/ UD55' Ev yJ,;z0cBb!uxxNuP!}~9+'Q!:a0t֕IC&`{X\q\Rs=GR`-3p Jtfa6>IJb2]ȵ!BX!K,K< liwx\j0ۆ.?8ϸt?%Le u@1LЄkD +:Q <aeZl)IGR{"ZO<ג#VbˆF$OyT)EMǙc건 gJY).v0/x.K伸(LQMJRD `E0a!WI@/^ Po~>M4_PƈgV4&hdѳ`R"?}cy絓pO!Zhur-|<7DS)yL1 2@$Y=?T1T)?TO }kzzz"B`N&3?ØYt{B Η #le2*Ԋ A\Z)8GV۫|8u&/Ky'ڨ7LuPCrgCDBT'C+Pd'EC' ̏XniHdUFn̸p#Hɣ[b|+/Đ)Tl9#347OUovX|>m [rQׇɲHjGm؏<ћk:?~ͳrs4YUK5뮽=mDG#Q`k~p|ߡw?C-xQc8L'ƀtifd1d镣e Q$n;"#:}B_,*s$_6@}x_|`/-(=`~vLE\Z/~`J{ku|kjqr"}4:>:__=+{k[g>ty##zOn#dO4ʹ;M#\rnI‘/\NMNNNB`;ov#1UFn֊ȪZL6~&5HAYؕAN E\&xӏ}>OY xT+g ot{:Vg@,rD"DT#Hdʒ(eAv]TDvr,s6_WS$]B)9ԯ 7/䢱Mu\Z7s#!G>h`%G/aZ2x Bէ7=iA9-N<O.Y?osDѧp03])FfLZxkQ߱sŞw^V)0 ӭn:3 \Z$|2d,7 eO,d ^"دfQC<^jVj)[}3#OX/*(v<'^Tozh t$9k?7ڟrnkqz_zŊ~6n\a xBң`ܘQ  q+O>i,K\4PC3N$iՓs8_,Yw췰BGhkw~}9Kg&7l^9zҌYZ% vvĿ>Uo;n:)G00C(cgˍj݆saN nIH{x.3:QG/)vm !t6]AL/}ĝ©3b p;w~k'yCo}΅wݰ1~xOgޯ=O<ݞVfׯ_=7Η J5 ={D7ՙ o%$E څ,0R V4 `'!m6bP(D7nWJպ"xfߑij/?kfs-xYZ@+o?{j\2y?QiBf<Oh'l\hva L(T5P0F(QL!b`&P(X[GvpsϿ}R2gw<ܛmnq8;5\[MFvrE?jg]{~#{r Z VȽpt3 :U(IO(kbP1y'Qsx8 JÖY<|D]jFfˍS[06S"b|g Fp>8' W>vgnڱg'~Fu*?þ~Z]gojO[}$f;o9G7uJ͢P{I"I na!Qn~9P5?:2}OQ/s[$ Pں9t x@c1k!4XSAޠ\5GrA0O(|f$/Cyoe{5O=\3.o]1K%Y EOl{+^+\rh2f Ѓz^::s0SW`E-p_JBl=RjiA J^%4auXz쬿r^A-RΌ2f' lUcDU%;Ou.o`ūGGlfU/}d܉b_ؿ,]Xwxv5Ƅ( Ћ V}SjAf#HPY[ Aוچn,**`iUE^kF `b ygLctLëLfߋ\,Gc#=g'ܳc/~obj}R/"Os'p%QhmZ[r--AAk=x~TPa?QĸoǟmFHIk\p/(]sf zç2@P--i ugT`51GcZ"UQ {I[r,®ܺirS/Zߗ|~LY{>d(\_[6-yE=`E$+ot$ZchKk;kYZk({dZZyhi:UYmކE,h}J νTRܠg1.^X-NĐGɽDcеF"`P s\k]}ՖyacOO ϥS~hir<(D_J`8r לS{}guz2_7˗ϿEUSJ\?OOsx OFp$:fhKl0)Rpu LP)U ,`cs_\`iV/l@K2HTb]偖j!7="MVT2m$*0JK4hoo[?+_׏%NK^>uzJVH\n-[ggf <O>MљH,>EsHAL XT X۔7#4])JG/S*L3Wq|:`YgmJJ`*]f2 6OI#b!ƹF+ Bna#l劥sO?}_l,Ͻ|;o]t-QKt:OF+Ei{]sssṹ91vKXl.Ecp<1$ñxA.f eQ[ h3~9"~cl DM&6, _of6+ l:S)Vu\Z[Mq]vە'|z1Grߎ#oHZYd43 m$֞p zER\O>=b;wk{}5 o*JR]~oz,KGcT4Hct$d KBUGI|^Hu"+ݻwW&Yr J<خ\zTk \ ΗݭZ܌1BTOLTM#rN%%1`Di; \#U:1&a۷zΉd~܁jrHPzsr;t6ux.P+*f'IZ;Z;gCegz2dO!r]\\q~AݩT-JaXW =kUYlVN;}98+ ܬyCW&dm~oMj9Wj~t +V?&1yZ1T Tu7'ݞzkgTkg$ԕI͵eS|6ݙˤ;l{.kk4,IƼHD|B_P(F#ޗFdz]HnaUQ|ucd1)tָCG抹KrAfL~0F2Crw~IC~2!( BddF> IL!`#_S׾~|I[ݒ'oOYCW-3AT9U2A^TC2bge2-\-δj&n VU᧔=RW IDATG/hT*ek&"?@R  H02k0F'KP+q{BwNR$* Kᗉ=IATT*N˕gg^Yߠy\_纷7>owſ>haNx`ƭo*U5Ӂ2)(K`2(]Љ!q$nyz*c\8+0`X , lM2l*ٞfZRtV%_2έb"E3ov{~PJx_p'B$uKV+ ݡP@gzfj D=g8#rMNH>0Fԣ#w*@ΈxG߽fd&nvoC;Z5 ֞x*7]55zo^kU 3 բ SG8Bh>;z&)ӧF:76!9YjsyHǓY{K熆Fbj4Fj@$ ?:3`߯:/=ۛp, ]r}; ta+<$9j@K&S'{Ӵh=,;_q54(+f3s)F]zc\cg9zGW߲RUB(M%bH_JXAJ/-]DtgW YlWU$I1#ڗ~fR)DQTU6+n]Ed b }9ӭсcM bN$;P, .!@\1Be)eQFo+k?"[&ܵc˱?̱|Re0clڍG9tTT6LhKH [#MI>5_ * ~ِOhP ~xDyP&/R`#ڗV㆛wnZ>|>XyGֈXm(el,Y*%K9xn' z~#IZ8=Qs__W{=̦[>Hkgϴ>OY8GvLGݽ( <|:|zO%b_hzXi_b.Hn1o%l\!᲼7"ORJR+e}߼abbBrY+V>Oqml3-/Ii47^g5h7ߛ?yc͖J !0GmGxf6_ŝۥ-ar6 9QgMWaSW6ShMJmmCPL$x^=bg@Ξ=kҧi>)o9+J I5-]cM'^l9~ݔڧBk?|_l/C.aD`:À9 I$j<{||.6N$*eTbmh/B#fnnLF`J bAmEUVePHn V=nPǠcyB|^7;*֭{r}Ӟ+΂D-V10P9*g>f$2#Mj$w`9;rn9KΡ3!v}t+̦{xu =?1?22""h\.۶ [&BM(̢[1oq뇾-7?| {\73*߃sfbHr.mzr=!H݄(_X?PWɜ"ZGf.Wj0kN:%_>WqDUO@5WmbȢD!X$Y&c6UO&Jk i;[HhZwwsn7u?[ړ &t&rBt̊r6%+JΞ\yD]YgÊ:t{+?*Y`I&=s_,b ' Z ottJł#<Mq9rG)x^ۈ7 >7!fɡ]ʚ >1˖7~v-ۻ뾟k72[MO:fnuǕA^ tZ!>yne2FLn1Ģ*n4ѨrDj,˖tcǎYRzX,wG gϞX|>ob(۲nYc}-WO̭2߉k0]7х X"C;v~T!6n1q]EbP d`0xTn+AȳM.+pU%0Q^gv٘/U-AWǰ|zOsDfff077g)w4c+ mPrj |\nZ*}UJ5 aNBΚl όBeEzY,+UJ *JI޾g_R:;$.:FEg1|jWajMFoBPT,#GDYJ/2o?sF ?j ̱zzO.ax&|qJAAύ(@EDLw rՋ.d9Q(ǒɐ?HG"<|Eb s-d<ö[$nW"uR) * _B0oԺVUab%o۶akl00111Y<J6|M<z`mP{/QTO9MnA,.Aop C~еVSs||f|h)xp۵}jj 9r":r2S Q|0<o<5zO2KG'ieZFQaܿT*YDOc8"|y L(s6hEH]ص\ նF'bJ(L@0 3j^O2Zj,(@ro飇?ƻχMґ)*\fBHOߕ/U-3n|br;(tc~hffgΜ%|_rUw.kˍ{:%KA{{0E83~\n6"M ln] Is$b s&?,[5Ek&rkD(p.r Ο:="u oBZZZ?~0ꫯ{X(o`!N)ɓ'9 9,h ]=32{lo^ӛ !X]&170(B"ްz?oE!胑3[33g}_˶O$(߿/p2WK{Yb307'H$pر""NJvBO̤ @HRP!|u]!BI֝ŢͿ5n8w^dF%D,$usz~&n\׋c^X̂Tw/VxE_8@`YwޛGqw_]]} IQlEEEm|g;y;;M}|T*( jaoocT@ >1 % Oq| KxO[y:H;hA x3YNSnY,7e vIs"|1ɏ;9>1|qŗJ7( N-cMwIs\gggRaXXXp,E==Cv> yyͼn'7%XWYBH# 9WտIlsEs \4m(D"tul9ga_(NM)A? A695MkJpq' +خ:t7>0d2-뎙a$A0F{ MNT~4Nzddtkj)lM88_ސh l2 (YlEL\@ pn恻I ;6s6np{4rž.kUN?]H$X7??4 n>77':dpQСC|z^8sWU9Vz^TUG-+,cGdu*&;~y,2ڦ|| i!o6w*H>>p=?tS~FRk>ޜ4,,O;\,Ft^ٳg*~o|;݄YB]vX/,,`֭&*^odB|>JRS(Ah{T HR!|6-uFÑh>G+9$NB9gY9ɛF% $D3N'f?ᷯ1^79S|I'<_*ہ&%cǎСCo`kGf}vsT*M?Cv-$YKe" L/xYF@sHٟ@HjO`?{5ZZ'3\L=vo79cyG__ݯ:^@䊢G\vNoֳjMH)>t0M#k!F}Aty& |łxW[εEıJ՜:8Z3T@ooيOձh GH[DP+'/~d.]݉>ܓ8lٲ5;77˗]eJ;u]|Ϳ<~xf#x^}vSF9u ,7ُL׋f;(Mv|ҜwiRnka-r@Z8(Ik=inwHs1gF́7.n8 ?<[nB}}}$(MLL^pu/~'w^@xѣGu'I VNAQx ˇۆCx\TMs4E!Hp fצ ?k1z'F3 G&-:>w)aM1ǟ|7npcwk*Pӟ.~>'oFo':MC \=t= TUE u\$IAK@$]1\!YTMbu`>IIYCez1;c~13{JesVSdNlyco=VRd2t~aa;v}{n #8dYh~i{9|) ^_"qSZHݻvjl2R49| u 2'^O"Яw o}NЭ9l<1z഍nNA#!5>vs z]&.w5U-޷/?Gp~{A" ϟNj/d2J;xJ؉l˿0Aq֭[Kn݃kfggFH:;>y T='\eg9Bf%@o&a#%㑍}3EU"5+Wo29> yV><ϷtUUBus[woVTp Mvod2m۶+bk+,j>vqXsE\ͻ4ݛWvLϦo+$=:p 4z34UZJ}]$/^t޳s}m>GvqNJ>&hx19nO]r9\rGP0Wz+b1yhf>o$]?2::H$~Ձ& - _týl}LƬacʼn'N4&qܟ>|X@}A^tvw;lZchK:Е,*73gQVھ_s9Ep`nQݷD ?FS e@)H.[زΏfr݅rmY9|>sVdk}>qҘf`t p52N8sΙ^x<>p@LES077T*e&99ÇW:p`&T[Ӄ6@0t8t5T$_WPזW(|1\ o*ϊPw89a@(|=_ \uJ<[9k pb6JnmzJc166HٳիW+E y op0H 7 IDAT]M@e2+T*6r/J_E_1鑄#$QKXD |:љj+\WU^W55\]WT-߭/;q}K|>]4(fB>ǫj߾bttpؑvw0sop0H!?tF"u]M뚐bS:٥h8}!~3.n Tw[zqHgd]]]-+b\ũ&[߮ /0;;3g L"}3Ž=zuVU̠!M)EP,FqT% PǵZ1 Rǝwo"ҹ2y:wnơwlC_gX x5}ϙLM(:D"|>=!LME S(>M$So` | : xX^ `&UĹY|6W&y85!m~c,l v߻8%t]ɤzi\t$V|"FFFL"bVĉHRCťң>!M@M7044亢%eXQ0,bb*SWxJeZ:!5@+.4DУTRҥKx;ѤuPǙ@|cΝy/PVc~~ I8V;In,wEW0I=hO:cǎaffU;n?ў|C?A ,XX059}3(4M31&lpδЍ.Cč0==mR[.fQ.͛^+uεlTJB:u:Ekx155J7͓zu]fjj 0my||d,=9E5^k}}G,LXT@q&\0_ӑgxo~: sKUU3Zٳgq%U{}Q{Jk>B)߿Ї*.^AT*arr\`Yx fՎ,N8|>T*F?CH}Q> /`k>&lhOX,brrϟ7k]׏Op\}=8x >1әi'Zf]Mn\(i{ 0a.38?>u`siO Js>b1Ȳn,D똜D\n[ϱt았 `ll ,OkoUUqi$ɥZ lByHZ}7eM3 ۮ[ Q|LT ssszK_R~//>OȔҧ)w8A޽p `ff\nI39jBعs'@&~J)Ν;iR)!.xln`; l]QVP@ CVM6j5eL9ɘ7y QJWG?nJ3=N+c;w4oNy/5[`كcddhԑ˸p9E><>>L6|+_u]?>}t\IAYӠ(YºTHox\RJ/YYGu9]G $I9If5C!FLc `x  s|f||{xh27 *^?t]c[lPSX0!3===l 2gY#~i!__p?kKRJ)G/u=<uf@ @,Ν;͜}6„&+)& BqMV*p  ͵(ˑ#Gxʗe/6,& 3U]ߠR,G}tz?=W0;v "aB;pg z[\ibΝ/„,EI;1;m0ŴՔeL& П~Cξ{? ࿹iJn>a¥r[`0q$&LRKEN`1B0!SJ؂* @bs+1(*rƖ0''r>xI3Nq BŦ0bvvldv҇[ ?d2\i,&u:&<0vaXoA 5>ܮV:ŚHXP(MP'6wnM-dlmDvtt{ORՐfqc1!~(6+_óx9Մt,evH$χBIPTH@D"J:]m/% !EA:6w*:Չ%Wr""ǹ\ 4 ہ@Hl,uott4{;wvj:[O0s&&&tY McX@ EQP*FWm655͍Zu^J(J؛PJ!2fxPV ޥ ' C[C#h$$I$Oرc>baa$ydYsp}upbѱjω>jz-Iz{{ I {{ttDC ֠ߌ[011q|ddeBؓA٬.,, uypjuj0BYnAMZ>(f|httt,t# c%YӃt: j\[vD"Q;A %FPJK8{7 .i*1`,LvVej\i Qۋ|>Q[E<8::D"Q|[?kpPM.tPkVTP׸d֌Fo<ϣ:K$ɷ !pnm$F$ŋn(oRJP(d Yq;#HÀMfh^B0a^$InSFD"qq=x@,㵫}Zg9\ȉ1A%,Y DE"oٕVQZzQUUiVZVUeRD ’Sm\] q=Hۜ^166QcqjB=y㭺/phhȱ9'\ u͹+>2>>Bk\Ju |>qŸ. `0>Hy<NE!v . S]M4]4i(( #ZrY+JZX2Nt:҅ GJWb1n g7u1kJ\boGuuuapp in`,xR/_w]ih@! \OBh8W3:??(333ޢMz$[p7z^p MGDi._Zvqq۰o߾jB)r˗/ss\_f`b懆[]]]B(`_$IEQ`Es^8y8 !moی(v" `)T~JF^UUU5@VjVSZ*|>r95J)W^UIZҵ^oY8!chh7tX,u"lݍO}>+ PJQ.H$կ~)ؓO>yuzkM(k.~xxXܲeńp8,]/ h^`8N ƪ/X4g7͠[4A" {Fz]JZeD %ͪ 299\rET*t-W|u]`1Ff]vvmXl:dn?Tav<444brlT‹/|;NOm||VY7" `sN_# %'ʲ,z<A$Q$QPEA7< c`gP+[Y7 U]7H@뚪(jVSժba(LFWfff/333mkD op__w!w9ݼ^{AooO&l!hMD###pm5Bo8~B^xꩧ m"x'+<^g뚒Q0曥={x=}}}h4D"@ |,˒,Y=$MEQe<{x8qyly={ly,dDDB;f`h&¢> Á<Ϣ( i|>" wH$y<GE(A< x K x83q'<1^2q^c p{-g{+!y !^dBq!Hv6LSnXL7ܢ0y Xc lV|۷i5MѨ=(8ՄK giۯMuaV<==YB"AY6 _ -A cccАX,&AƊ/J$(ƾ$qg9DIybbbv7:zz^"I'"KibՒ>go@)q'''q%TUY<ݻw7[ ^~e;H$ ,بvP$ Fn8j r쪿U7q ہot]iV4W5M^a$`j㺪UMjuUUcEQ^QE늢(JVSj TTrYj.S3JYujjJfW~ţCCCUޅtj"^R44eYF hh:uV`D&n"J鋆l7e^tVVi\FZkD"^zN}>(.IxtM4EQ4Q5ATUUUU#P8NyL%-R!:8x,鿌p㱙kS`b K6@T*JT2٬2??\zUVRcǎ}7)IcN'Ob׮]ۑjB]r`ƻc\xtMqpYNtl rqTfggi6/,,h-[n- jPH|Q^j$),VRy ୩he,c@VJ@VR-6?Ͱj՟J.S:??_UtMӮؗzsό.Z={ĩS{nȲl$Iرc&''V#Ny pi)J䤾}vu۶mJOOեa@@eYx<%IbuA(T.v0Rk-ޡh]b $:/.T3`vY~6l}C5j*RɤL&zN7oϾ|]w/ ~^ɓ'{n~l< Iy8%1brxc+y<m۶M|4eB}>o$ F "/q~1cv$ة'q"k Q[WE\l o}EQ4z} JT*f2,x->o0c߾}4 ;w4XzzzuVs`jWVl\.~Wl^L zzzh4*B!F 2xAXW s32lBl 4QԒ@% = V[\6 9L&+k UΝ;op~'Pʲ@4 7U ۴ӫ~'_7 韏wR&l9^ YkYbbMLLh cp8|>>$x< oh 9!,DlGkTŒ:\ YP]UU/(ވj^3@^6ղ٬^,)?r?8x|<OCK5rL`y1 0`}aPUU4FZ+^.RB@ ^ըÍzkM:@ .2G @$0AΝ;@2nZ[ /.3<^O/?:A1~Θy<NeN$b4%FyG,(pmf[pRP0-˨NM>RBؐdq}$I&C<,عs'D4VPef?3dYSѪjysa  8HR EQ(N6׾ skLkNs>{͒s4M328 &u|K/dرcp߿Vne{k܊7BnwM7݄[nŵJD4G?O~' Gyt5dz Rl[^Zj P(~VBv?P*fc}?T>)m5_6g 8o;/lfNȫW4MXlOj59I x <pRJȑ#?X @HcӁR_ze&,{{EQX/GetMضm 2Ģd2s̙3KEh =r+uy6|z~΀_oR(~`q,و}i'=zzV֓jE_n;@Z۾[Z8 ˗/u]n4-BPJg[k ֪BX+e`#]|D *2SU˖$5z@ e v^w-לW.W{RJ(?>Ses_ߌF[obM=mXtꄐ, TX< /{*F]ѯo`3+ZZh MKk뵚_o uz]l+ `~NLzZ#v"` X)RF ѻ:8. -I.]:Fz6FaWݍ,YLakEJXkaS~3ZV Xo\׮ oCo bXk]Z'-vh nƱ;&iVrfp-4t`S}dk ,zvG:6VБt#HG:ґt#HG:ґt#HG:ґt#HG:ґt#HG:ґt#i-?_=0.6.0 docutils<0.22 extras-require>=0.5.0 furo==2021.06.18b36 html-section>=0.3.0 roman>=4.0 seed-intersphinx-mapping>=1.2.2 setuptools<81 sphinx>=3.0.3 sphinx-copybutton>=0.2.12 sphinx-debuginfo>=0.2.2 sphinx-licenseinfo>=0.3.1 sphinx-notfound-page>=0.7.1 sphinx-pyproject>=0.1.0 sphinx-toolbox>=3.5.0 sphinxcontrib-applehelp==1.0.4 sphinxcontrib-devhelp==1.0.2 sphinxcontrib-htmlhelp==2.0.1 sphinxcontrib-httpdomain>=1.7.0 sphinxcontrib-jsmath==1.0.1 sphinxcontrib-qthelp==1.0.3 sphinxcontrib-serializinghtml==1.1.5 sphinxemoji>=0.1.6 toctree-plus>=0.6.1 sphinx-toolbox-dict2css-c0c963c/formate.toml000066400000000000000000000014631520354072300211760ustar00rootroot00000000000000[hooks] dynamic_quotes = 10 collections-import-rewrite = 20 reformat-generics = 40 noqa-reformat = 60 ellipsis-reformat = 70 squish_stubs = 80 newline_after_equals = 90 [hooks.yapf] priority = 30 [hooks.yapf.kwargs] yapf_style = ".style.yapf" [hooks.trailing_commas] priority = 21 [hooks.trailing_commas.kwargs] format_ImportFrom = false [hooks.isort] priority = 50 [hooks.isort.kwargs] indent = " " multi_line_output = 8 import_heading_stdlib = "stdlib" import_heading_thirdparty = "3rd party" import_heading_firstparty = "this package" import_heading_localfolder = "this package" balanced_wrapping = false lines_between_types = 0 use_parentheses = true remove_redundant_aliases = true default_section = "THIRDPARTY" known_first_party = [ "dict2css",] line_length = 115 [config] indent = " " line_length = 115 sphinx-toolbox-dict2css-c0c963c/justfile000066400000000000000000000010241520354072300204050ustar00rootroot00000000000000default: lint pdf-docs: latex-docs make -C doc-source/build/latex/ latex-docs: SPHINX_BUILDER=latex tox -e docs unused-imports: tox -e lint -- --select F401 incomplete-defs: tox -e lint -- --select MAN commas: tox -e lint -- --select C810,C812,C813,C814,C815,C816 vdiff: git diff $(repo-helper show version -q)..HEAD bare-ignore: greppy '# type:? *ignore(?!\[|\w)' -s lint: unused-imports incomplete-defs bare-ignore tox -n qa uncomm: git status -uall --ignored # Custom commands can be added below this comment sphinx-toolbox-dict2css-c0c963c/pyproject.toml000066400000000000000000000072751520354072300215670ustar00rootroot00000000000000[build-system] requires = [ "whey",] build-backend = "whey" [project] name = "dict2css" version = "0.6.0" description = "A μ-library for constructing cascading style sheets from Python dictionaries." readme = "README.rst" keywords = [ "css", "serialize",] dynamic = [ "requires-python", "classifiers", "dependencies",] [project.license] file = "LICENSE" [[project.authors]] name = "Dominic Davis-Foster" email = "dominic@davis-foster.co.uk" [project.urls] Homepage = "https://github.com/sphinx-toolbox/dict2css" "Issue Tracker" = "https://github.com/sphinx-toolbox/dict2css/issues" "Source Code" = "https://github.com/sphinx-toolbox/dict2css" Documentation = "https://dict2css.readthedocs.io/en/latest" [tool.whey] base-classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Topic :: Software Development :: Libraries :: Python Modules", "Typing :: Typed", ] python-versions = [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",] python-implementations = [ "CPython", "PyPy",] platforms = [ "Windows", "macOS", "Linux",] license-key = "MIT" [tool.sphinx-pyproject] github_username = "sphinx-toolbox" github_repository = "dict2css" author = "Dominic Davis-Foster" project = "dict2css" copyright = "2020-2021 Dominic Davis-Foster" language = "en" package_root = "dict2css" extensions = [ "sphinx_toolbox", "sphinx_toolbox.more_autodoc", "sphinx_toolbox.more_autosummary", "sphinx_toolbox.documentation_summary", "sphinx_toolbox.tweaks.param_dash", "sphinxcontrib.toctree_plus", "sphinx_toolbox.tweaks.latex_layout", "sphinx_toolbox.tweaks.latex_toc", "sphinx.ext.intersphinx", "sphinx.ext.mathjax", "sphinxcontrib.extras_require", "sphinx.ext.todo", "notfound.extension", "sphinx_copybutton", "sphinxcontrib.default_values", "sphinx_debuginfo", "sphinx_licenseinfo", "seed_intersphinx_mapping", "html_section", "sphinx_toolbox.more_autosummary.column_widths", "sphinx_toolbox_experimental.succinct_seealso", "sphinx_toolbox_experimental.needspace", "sphinx_toolbox_experimental.missing_xref", "sphinx_toolbox_experimental.changelog", "latex_mu", ] gitstamp_fmt = "%d %b %Y" templates_path = [ "_templates",] html_static_path = [ "_static",] source_suffix = ".rst" master_doc = "index" suppress_warnings = [ "image.nonlocal_uri",] pygments_style = "default" html_theme = "furo" html_theme_path = [ "../..",] html_show_sourcelink = true toctree_plus_types = [ "class", "confval", "data", "directive", "enum", "exception", "flag", "function", "namedtuple", "protocol", "role", "typeddict", ] add_module_names = false hide_none_rtype = true all_typevars = true overloads_location = "bottom" html_codeblock_linenos_style = "table" autodoc_exclude_members = [ "__dict__", "__class__", "__dir__", "__weakref__", "__module__", "__annotations__", "__orig_bases__", "__parameters__", "__subclasshook__", "__init_subclass__", "__attrs_attrs__", "__init__", "__new__", "__getnewargs__", "__abstractmethods__", "__hash__", ] [tool.mypy] python_version = "3.9" namespace_packages = true check_untyped_defs = true warn_unused_ignores = true no_implicit_optional = true show_error_codes = true [tool.snippet-fmt] directives = [ "code-block",] [tool.snippet-fmt.languages.python] reformat = true [tool.snippet-fmt.languages.TOML] reformat = true [tool.snippet-fmt.languages.ini] [tool.snippet-fmt.languages.json] [tool.dependency-dash."requirements.txt"] order = 10 [tool.dependency-dash."tests/requirements.txt"] order = 20 include = false [tool.dependency-dash."doc-source/requirements.txt"] order = 30 include = false sphinx-toolbox-dict2css-c0c963c/repo_helper.yml000066400000000000000000000023521520354072300216710ustar00rootroot00000000000000# Configuration for 'repo_helper' (https://github.com/domdfcoding/repo_helper) --- modname: 'dict2css' copyright_years: 2020-2021 author: 'Dominic Davis-Foster' email: 'dominic@davis-foster.co.uk' username: 'sphinx-toolbox' assignee: 'domdfcoding' version: '0.6.0' license: 'MIT' short_desc: 'A μ-library for constructing cascading style sheets from Python dictionaries.' use_whey: true sphinx_html_theme: furo min_coverage: 100 docs_fail_on_warning: true preserve_custom_theme: true on_conda_forge: true enable_conda: false python_versions: - 3.8 - 3.9 - "3.10" - "3.11" - "3.12" - "3.13" - pypy38 - pypy39 keywords: - serialize - css classifiers: - 'Development Status :: 4 - Beta' - 'Intended Audience :: Developers' - 'Topic :: Software Development :: Libraries :: Python Modules' sphinx_conf_epilogue: - nitpicky = True - latex_elements["preamble"] = "\\raggedbottom\n\\widowpenalty10000" - changelog_sections_numbered = False exclude_files: - contributing extra_sphinx_extensions: - sphinx_toolbox.more_autosummary.column_widths - sphinx_toolbox_experimental.succinct_seealso - sphinx_toolbox_experimental.needspace - sphinx_toolbox_experimental.missing_xref - sphinx_toolbox_experimental.changelog - latex_mu sphinx-toolbox-dict2css-c0c963c/requirements.txt000066400000000000000000000000521520354072300221210ustar00rootroot00000000000000domdf-python-tools>=2.2.0 tinycss2>=1.2.1 sphinx-toolbox-dict2css-c0c963c/stubs.txt000066400000000000000000000000741520354072300205420ustar00rootroot00000000000000git+https://github.com/domdfcoding/pytest-regressions-stubs sphinx-toolbox-dict2css-c0c963c/tests/000077500000000000000000000000001520354072300200025ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/__init__.py000066400000000000000000000000001520354072300221010ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/conftest.py000066400000000000000000000000431520354072300221760ustar00rootroot00000000000000pytest_plugins = ("coincidence", ) sphinx-toolbox-dict2css-c0c963c/tests/requirements.txt000066400000000000000000000002761520354072300232730ustar00rootroot00000000000000coincidence>=0.2.0 coverage>=5.1 coverage-pyver-pragma>=0.2.1 importlib-metadata>=3.6.0 iniconfig!=1.1.0,>=1.0.1 pytest>=6.0.0 pytest-cov>=2.8.1 pytest-randomly>=3.7.0 pytest-timeout>=1.4.2 sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css.py000066400000000000000000000202241520354072300231310ustar00rootroot00000000000000# stdlib from ipaddress import IPv4Address from typing import Dict, Mapping, MutableMapping, Optional, no_type_check # 3rd party import pytest from coincidence.regressions import AdvancedDataRegressionFixture, AdvancedFileRegressionFixture from domdf_python_tools.paths import PathPlus from domdf_python_tools.words import TAB # this package from dict2css import IMPORTANT, Style, dump, dumps, load, loads from dict2css.helpers import em, px, rem def boolean_option(name: str, id: str): # noqa: A002,MAN002 # pylint: disable=redefined-builtin return pytest.mark.parametrize( name, [ pytest.param(True, id=id), pytest.param(False, id=f"not {id}"), ], ) def ternary_option(name: str, id: str): # noqa: A002,MAN002 # pylint: disable=redefined-builtin return pytest.mark.parametrize( name, [ pytest.param(True, id=id), pytest.param(False, id=f"not {id}"), pytest.param(None, id=f"unset {id}"), ], ) @no_type_check def test_dumps_not_mapping(): with pytest.raises(TypeError, match="Cannot convert .* to CSS"): dumps([1, 2, 3]) with pytest.raises(TypeError, match="Cannot convert .* to CSS"): dumps((1, 2, 3)) with pytest.raises(TypeError, match="Cannot convert .* to CSS"): dumps("ABC") with pytest.raises(TypeError, match="Cannot convert .* to CSS"): dumps(123) with pytest.raises(TypeError, match="Cannot convert .* to CSS"): dumps(123.456) with pytest.raises(TypeError, match="Cannot convert .* to CSS"): dumps(True) with pytest.raises(TypeError, match="Cannot convert .* to CSS"): dumps(None) @no_type_check @boolean_option("check_circular", "check_circular") def test_dumps_unknown_type(check_circular: bool): with pytest.raises(ValueError, match="Object of type .* cannot be represented in CSS"): dumps({"the_key": IPv4Address("127.0.0.1")}, check_circular=check_circular) @no_type_check def test_dumps_bad_floats(): with pytest.raises(ValueError, match="Out of range float values are not allowed:"): dumps({"the_key": float("inf")}) with pytest.raises(ValueError, match="Out of range float values are not allowed:"): dumps({"the_key": float("-inf")}) with pytest.raises(ValueError, match="Out of range float values are not allowed:"): dumps({"the_key": float("nan")}) @boolean_option("check_circular", "check_circular") @boolean_option("sort_keys", "sort_keys") @ternary_option("trailing_semicolon", "trailing_semicolon") @boolean_option("indent_closing_brace", "indent_closing_brace") @pytest.mark.parametrize( "indent", [ pytest.param(TAB, id="tab"), pytest.param(" ", id='2'), pytest.param(" ", id='4'), pytest.param('', id='0'), ], ) @pytest.mark.parametrize( "none_style", [ pytest.param("none", id="normal_none"), pytest.param("None", id="cap_none"), ], ) def test_dumps( advanced_file_regression: AdvancedFileRegressionFixture, trailing_semicolon: Optional[bool], indent_closing_brace: bool, indent: str, check_circular: bool, sort_keys: bool, tmp_pathplus: PathPlus, none_style: str, ): stylesheet: Dict[str, Style] = { ".wy-nav-content": {"max-width": (rem(1200), IMPORTANT), "z-index": 999}, "li p:last-child": { "margin-bottom": (em(12), IMPORTANT), "margin-top": em(6), "font-size": px(14), "line-height": 1.5, "font-weight": (800, IMPORTANT), }, "html": {"scroll-behavior": "smooth"}, } css = dumps( stylesheet, indent=indent, trailing_semicolon=trailing_semicolon, indent_closing_brace=indent_closing_brace, check_circular=check_circular, sort_keys=sort_keys, none_style=none_style, # type: ignore[arg-type] ) advanced_file_regression.check(css, extension=".css") output_file = tmp_pathplus / "style.css" with output_file.open('w') as fp: dump( stylesheet, fp, indent=indent, trailing_semicolon=trailing_semicolon, indent_closing_brace=indent_closing_brace, check_circular=check_circular, sort_keys=sort_keys, ) advanced_file_regression.check_file(output_file) dump( stylesheet, output_file, indent=indent, trailing_semicolon=trailing_semicolon, indent_closing_brace=indent_closing_brace, check_circular=check_circular, sort_keys=sort_keys, ) advanced_file_regression.check_file(output_file) def test_dump_minify(advanced_file_regression: AdvancedFileRegressionFixture, tmp_pathplus: PathPlus): stylesheet: Dict[str, Style] = { ".wy-nav-content": {"max-width": (rem(1200), IMPORTANT), "box-shadow": None}, "li p:last-child": { "margin-bottom": (em(12), IMPORTANT), "margin-top": em(6), }, "html": {"scroll-behavior": "smooth"}, } css = dumps(stylesheet, minify=True) advanced_file_regression.check(css, extension=".css") output_file = tmp_pathplus / "style.css" with output_file.open('w') as fp: dump(stylesheet, fp, minify=True) advanced_file_regression.check_file(output_file) dump(stylesheet, output_file, minify=True) advanced_file_regression.check_file(output_file) def test_dumps_media(advanced_file_regression: AdvancedFileRegressionFixture, tmp_pathplus: PathPlus): stylesheet: Dict[str, MutableMapping] = { ".wy-nav-content": {"max-width": (rem(1200), IMPORTANT)}, "li p:last-child": { "margin-bottom": (em(12), IMPORTANT), "margin-top": em(6), }, "html": {"scroll-behavior": "smooth"}, "@media screen and (min-width: 870px)": {"li p:last-child": {"max-width": (rem(1200), IMPORTANT)}}, } css = dumps(stylesheet, trailing_semicolon=True) advanced_file_regression.check(css, extension=".css") output_file = tmp_pathplus / "style.css" with output_file.open('w') as fp: dump(stylesheet, fp, trailing_semicolon=True) advanced_file_regression.check_file(output_file) dump(stylesheet, output_file, trailing_semicolon=True) advanced_file_regression.check_file(output_file) def test_loads(advanced_data_regression: AdvancedDataRegressionFixture, tmp_pathplus: PathPlus): style = [ ".wy-nav-content {", " max-width: 1200rem !important;", " }", '', "li p:last-child {", " margin-bottom: 12em !important;", " margin-top: 6em;", " }", '', "@media screen {", " html {", " scroll-behavior: smooth;", " }", '}', ] advanced_data_regression.check(loads('\n'.join(style))) stylesheet: Mapping[str, Mapping] = { ".wy-nav-content": {"max-width": (rem(1200), IMPORTANT)}, "li p:last-child": { "margin-bottom": (em(12), IMPORTANT), "margin-top": em(6), }, "html": {"scroll-behavior": "smooth"}, "@media screen and (min-width: 870px)": {"li p:last-child": {"max-width": (rem(1200), IMPORTANT)}}, } assert loads(dumps(stylesheet)) == stylesheet style_file = tmp_pathplus / "style.css" dump(stylesheet, style_file) assert load(style_file) == stylesheet with style_file.open() as fp: assert load(fp) == stylesheet def test_loads_bad_syntax(): style = [ ".wy-nav-content {", " max-width", " }", ] with pytest.raises(ValueError, match=""): loads('\n'.join(style)) @no_type_check def test_circular_references(): css = { 'a': {'b': 'c'}, } css['d'] = css with pytest.raises(ValueError, match="Circular reference detected"): dumps(css) def test_edge_cases(): with pytest.raises(TypeError, match="keys must be strings, not"): dumps({1234: {'a': 'b'}}) # type: ignore[dict-item] with pytest.raises(ValueError, match="Property cannot be empty"): dumps({'a': {'b': ()}}) assert dumps({}) == '' assert dumps({'a': {}}) == "a {}\n" assert dumps({'a': {'b': True}}, indent='') == "a {b: true}\n" assert dumps({'a': {'b': False}}, indent='') == "a {b: false}\n" assert dumps({'a': {'b': ('c', ('d', ))}}) == 'a {\n\tb: c d\n}\n' def test_for_sphinx_toolbox(): assert dumps({"p.source-link": {"margin-bottom": 0}}, trailing_semicolon=False) == """p.source-link { margin-bottom: 0 } """ font_family = '"SFMono-Regular", Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace' css_dict = {"p.source-link": {"font-family": font_family}} assert dumps( css_dict, trailing_semicolon=False, ) == """p.source-link { font-family: "SFMono-Regular", Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace } """ sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/000077500000000000000000000000001520354072300227165ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dump_minify.css000066400000000000000000000002271520354072300270100ustar00rootroot00000000000000.wy-nav-content{max-width:1200rem !important;box-shadow:none}li p:last-child{margin-bottom:12em !important;margin-top:6em}html{scroll-behavior:smooth} test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000003371520354072300470220ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000246152035407230020451xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003371520354072300461420ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000003371520354072300470220ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000003451520354072300461410ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999; } li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html {scroll-behavior: smooth; } test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css000066400000000000000000000003451520354072300470210ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999; } li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html {scroll-behavior: smooth; } test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003451520354072300452610ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999; } html {scroll-behavior: smooth; } li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000003451520354072300461410ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999; } html {scroll-behavior: smooth; } li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000244152035407230020447xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000250152035407230020444xustar00rootroot00000000000000168 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003371520354072300465000ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.paxheader00006660000000000000000000000244152035407230021120xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.data000066400000000000000000000003371520354072300177610ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000246152035407230020451xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000252152035407230020446xustar00rootroot00000000000000170 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003371520354072300470220ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.paxheader00006660000000000000000000000246152035407230021122xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.data000066400000000000000000000003371520354072300177610ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000003451520354072300470210ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999; } li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html {scroll-behavior: smooth; } ff028941e5da723be609fd1a2fa8e093349373c9.paxheader00006660000000000000000000000246152035407230020451xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css ff028941e5da723be609fd1a2fa8e093349373c9.data000066400000000000000000000003451520354072300173070ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999; } li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html {scroll-behavior: smooth; } test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003451520354072300461410ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999; } html {scroll-behavior: smooth; } li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000003451520354072300470210ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999; } html {scroll-behavior: smooth; } li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000250152035407230020444xustar00rootroot00000000000000168 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000254152035407230020450xustar00rootroot00000000000000172 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.paxheader00006660000000000000000000000244152035407230021120xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.data000066400000000000000000000003371520354072300177610ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.paxheader00006660000000000000000000000250152035407230021115xustar00rootroot00000000000000168 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.data000066400000000000000000000003371520354072300177610ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000003751520354072300470260ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } 6afd4a9cad7514f5fdf06a0e67c49ad1e8864aaf.paxheader00006660000000000000000000000246152035407230021106xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css 6afd4a9cad7514f5fdf06a0e67c49ad1e8864aaf.data000066400000000000000000000003751520354072300177470ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003751520354072300461460ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000003751520354072300470260ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000004001520354072300461330ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css000066400000000000000000000004001520354072300470130ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000004001520354072300452530ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000004001520354072300461330ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 905e248355f64e0648a3cb09782beb0c5aa172a9.paxheader00006660000000000000000000000244152035407230020352xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 905e248355f64e0648a3cb09782beb0c5aa172a9.data000066400000000000000000000004001520354072300172020ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 905e248355f64e0648a3cb09782beb0c5aa172a9.paxheader00006660000000000000000000000250152035407230020347xustar00rootroot00000000000000168 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 905e248355f64e0648a3cb09782beb0c5aa172a9.data000066400000000000000000000004001520354072300172020ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000004001520354072300464710ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 5c89a40b818c5db6c1398e63c7b43e905dcd51b6.paxheader00006660000000000000000000000244152035407230020525xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css 5c89a40b818c5db6c1398e63c7b43e905dcd51b6.data000066400000000000000000000004001520354072300173550ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 5c14ff51efefd248ab080b9facf05ad288d6add0.paxheader00006660000000000000000000000246152035407230021151xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css 5c14ff51efefd248ab080b9facf05ad288d6add0.data000066400000000000000000000003671520354072300200130ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } 5c14ff51efefd248ab080b9facf05ad288d6add0.paxheader00006660000000000000000000000252152035407230021146xustar00rootroot00000000000000170 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css 5c14ff51efefd248ab080b9facf05ad288d6add0.data000066400000000000000000000003671520354072300200130ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003671520354072300470270ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } b18f4e00eea275cb21ecaca4a3a4e5bc97b30886.paxheader00006660000000000000000000000246152035407230020774xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b18f4e00eea275cb21ecaca4a3a4e5bc97b30886.data000066400000000000000000000003671520354072300176360ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000003721520354072300470230ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.paxheader00006660000000000000000000000246152035407230021064xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.data000066400000000000000000000003721520354072300177220ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003721520354072300461430ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000003721520354072300470230ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.paxheader00006660000000000000000000000250152035407230021057xustar00rootroot00000000000000168 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.data000066400000000000000000000003721520354072300177220ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.paxheader00006660000000000000000000000254152035407230021063xustar00rootroot00000000000000172 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.data000066400000000000000000000003721520354072300177220ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } b0dc652e98181318f162215a66b731d2e9ee9b35.paxheader00006660000000000000000000000244152035407230020277xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b0dc652e98181318f162215a66b731d2e9ee9b35.data000066400000000000000000000003721520354072300171370ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } b0dc652e98181318f162215a66b731d2e9ee9b35.paxheader00006660000000000000000000000250152035407230020274xustar00rootroot00000000000000168 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b0dc652e98181318f162215a66b731d2e9ee9b35.data000066400000000000000000000003721520354072300171370ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000004231520354072300470220ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } ffbd0e7d9fd07cd67f3e9eca60809affb1b4a9a5.paxheader00006660000000000000000000000246152035407230021252xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css ffbd0e7d9fd07cd67f3e9eca60809affb1b4a9a5.data000066400000000000000000000004231520354072300201050ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000004231520354072300461420ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000004231520354072300470220ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000004261520354072300461450ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css000066400000000000000000000004261520354072300470250ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000004261520354072300452650ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000004261520354072300461450ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 67a5fe03305c3da5f5fee7e88503711006bc1d32.paxheader00006660000000000000000000000244152035407230020421xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 67a5fe03305c3da5f5fee7e88503711006bc1d32.data000066400000000000000000000004261520354072300172610ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 67a5fe03305c3da5f5fee7e88503711006bc1d32.paxheader00006660000000000000000000000250152035407230020416xustar00rootroot00000000000000168 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 67a5fe03305c3da5f5fee7e88503711006bc1d32.data000066400000000000000000000004261520354072300172610ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000004261520354072300465030ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 49a3b1aa8a5be853400bcb675e950bf12c65b150.paxheader00006660000000000000000000000244152035407230020467xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css 49a3b1aa8a5be853400bcb675e950bf12c65b150.data000066400000000000000000000004261520354072300173270ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 76b99765d64b9879a57d4560eb86036750649694.paxheader00006660000000000000000000000246152035407230020001xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css 76b99765d64b9879a57d4560eb86036750649694.data000066400000000000000000000004071520354072300166360ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } 76b99765d64b9879a57d4560eb86036750649694.paxheader00006660000000000000000000000252152035407230017776xustar00rootroot00000000000000170 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css 76b99765d64b9879a57d4560eb86036750649694.data000066400000000000000000000004071520354072300166360ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000004071520354072300470240ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } 9adc67a5f686da471b4cb6942fe939488122808e.paxheader00006660000000000000000000000246152035407230020412xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css 9adc67a5f686da471b4cb6942fe939488122808e.data000066400000000000000000000004071520354072300172470ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000004121520354072300470200ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 19c3f36cd6a48079474d36fb25751aa7ae884c87.paxheader00006660000000000000000000000246152035407230020403xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css 19c3f36cd6a48079474d36fb25751aa7ae884c87.data000066400000000000000000000004121520354072300172340ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000004121520354072300461400ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000004121520354072300470200ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 19c3f36cd6a48079474d36fb25751aa7ae884c87.paxheader00006660000000000000000000000250152035407230020376xustar00rootroot00000000000000168 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 19c3f36cd6a48079474d36fb25751aa7ae884c87.data000066400000000000000000000004121520354072300172340ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 19c3f36cd6a48079474d36fb25751aa7ae884c87.paxheader00006660000000000000000000000254152035407230020402xustar00rootroot00000000000000172 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 19c3f36cd6a48079474d36fb25751aa7ae884c87.data000066400000000000000000000004121520354072300172340ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 8a676108a0e1c58774222eb08dbc6c7a2019e5d2.paxheader00006660000000000000000000000244152035407230020344xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css 8a676108a0e1c58774222eb08dbc6c7a2019e5d2.data000066400000000000000000000004121520354072300171770ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 8a676108a0e1c58774222eb08dbc6c7a2019e5d2.paxheader00006660000000000000000000000250152035407230020341xustar00rootroot00000000000000168 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css 8a676108a0e1c58774222eb08dbc6c7a2019e5d2.data000066400000000000000000000004121520354072300171770ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } fa2263f4ee9320fe243b3f4b639fd64720f060ed.paxheader00006660000000000000000000000244152035407230020512xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css fa2263f4ee9320fe243b3f4b639fd64720f060ed.data000066400000000000000000000003621520354072300173510ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } fa2263f4ee9320fe243b3f4b639fd64720f060ed.paxheader00006660000000000000000000000250152035407230020507xustar00rootroot00000000000000168 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css fa2263f4ee9320fe243b3f4b639fd64720f060ed.data000066400000000000000000000003621520354072300173510ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003621520354072300465470ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } 306b110b1d93e38177c52f344abfe14afa25df32.paxheader00006660000000000000000000000244152035407230020466xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css 306b110b1d93e38177c52f344abfe14afa25df32.data000066400000000000000000000003621520354072300173250ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000003651520354072300465520ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 60d3152d9dd6b55850242a0e9ac43e2923347d57.paxheader00006660000000000000000000000244152035407230020211xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css 60d3152d9dd6b55850242a0e9ac43e2923347d57.data000066400000000000000000000003651520354072300170530ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003651520354072300456720ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000003651520354072300465520ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 60d3152d9dd6b55850242a0e9ac43e2923347d57.paxheader00006660000000000000000000000246152035407230020213xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 60d3152d9dd6b55850242a0e9ac43e2923347d57.data000066400000000000000000000003651520354072300170530ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 60d3152d9dd6b55850242a0e9ac43e2923347d57.paxheader00006660000000000000000000000252152035407230020210xustar00rootroot00000000000000170 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 60d3152d9dd6b55850242a0e9ac43e2923347d57.data000066400000000000000000000003651520354072300170530ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003651520354072300471100ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 19529d12ff589331b5d918d5e110e260c8f5f080.paxheader00006660000000000000000000000246152035407230020225xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css 19529d12ff589331b5d918d5e110e260c8f5f080.data000066400000000000000000000003651520354072300170650ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } ba6d847e4ea7ac99b667b4edf090933319baa4f6.paxheader00006660000000000000000000000250152035407230020667xustar00rootroot00000000000000168 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css ba6d847e4ea7ac99b667b4edf090933319baa4f6.data000066400000000000000000000003571520354072300175350ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } ba6d847e4ea7ac99b667b4edf090933319baa4f6.paxheader00006660000000000000000000000254152035407230020673xustar00rootroot00000000000000172 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css ba6d847e4ea7ac99b667b4edf090933319baa4f6.data000066400000000000000000000003571520354072300175350ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } 1efa5e52ce759aed92396b6670fc66c4a4c3faa5.paxheader00006660000000000000000000000244152035407230020746xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css 1efa5e52ce759aed92396b6670fc66c4a4c3faa5.data000066400000000000000000000003571520354072300176110ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } 1efa5e52ce759aed92396b6670fc66c4a4c3faa5.paxheader00006660000000000000000000000250152035407230020743xustar00rootroot00000000000000168 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css 1efa5e52ce759aed92396b6670fc66c4a4c3faa5.data000066400000000000000000000003571520354072300176110ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.paxheader00006660000000000000000000000244152035407230020761xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.data000066400000000000000000000003621520354072300176200ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.paxheader00006660000000000000000000000250152035407230020756xustar00rootroot00000000000000168 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.data000066400000000000000000000003621520354072300176200ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003621520354072300465470ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } fb0383d5e7995f146b284027b92caa723e1874fb.paxheader00006660000000000000000000000244152035407230020366xustar00rootroot00000000000000164 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css fb0383d5e7995f146b284027b92caa723e1874fb.data000066400000000000000000000003621520354072300172250ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.paxheader00006660000000000000000000000252152035407230020760xustar00rootroot00000000000000170 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.data000066400000000000000000000003621520354072300176200ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.paxheader00006660000000000000000000000256152035407230020764xustar00rootroot00000000000000174 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.data000066400000000000000000000003621520354072300176200ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } fb0383d5e7995f146b284027b92caa723e1874fb.paxheader00006660000000000000000000000246152035407230020370xustar00rootroot00000000000000166 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css fb0383d5e7995f146b284027b92caa723e1874fb.data000066400000000000000000000003621520354072300172250ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } fb0383d5e7995f146b284027b92caa723e1874fb.paxheader00006660000000000000000000000252152035407230020365xustar00rootroot00000000000000170 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css fb0383d5e7995f146b284027b92caa723e1874fb.data000066400000000000000000000003621520354072300172250ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_media.css000066400000000000000000000004021520354072300267520ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; } html { scroll-behavior: smooth; } @media screen and (min-width: 870px) { li p:last-child { max-width: 1200rem !important; } } 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000245152035407230020450xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000251152035407230020445xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003371520354072300466670ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.paxheader00006660000000000000000000000245152035407230021121xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.data000066400000000000000000000003371520354072300177610ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000003451520354072300466660ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999; } li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html {scroll-behavior: smooth; } ff028941e5da723be609fd1a2fa8e093349373c9.paxheader00006660000000000000000000000245152035407230020450xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css ff028941e5da723be609fd1a2fa8e093349373c9.data000066400000000000000000000003451520354072300173070ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999; } li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html {scroll-behavior: smooth; } test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003451520354072300460060ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999; } html {scroll-behavior: smooth; } li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000003451520354072300466660ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999; } html {scroll-behavior: smooth; } li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000247152035407230020452xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000253152035407230020447xustar00rootroot00000000000000171 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003371520354072300472250ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.paxheader00006660000000000000000000000247152035407230021123xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.data000066400000000000000000000003371520354072300177610ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000251152035407230020445xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000255152035407230020451xustar00rootroot00000000000000173 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.paxheader00006660000000000000000000000245152035407230021121xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.data000066400000000000000000000003371520354072300177610ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.paxheader00006660000000000000000000000251152035407230021116xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.data000066400000000000000000000003371520354072300177610ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} ff028941e5da723be609fd1a2fa8e093349373c9.paxheader00006660000000000000000000000245152035407230020450xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css ff028941e5da723be609fd1a2fa8e093349373c9.data000066400000000000000000000003451520354072300173070ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999; } li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html {scroll-behavior: smooth; } ff028941e5da723be609fd1a2fa8e093349373c9.paxheader00006660000000000000000000000251152035407230020445xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css ff028941e5da723be609fd1a2fa8e093349373c9.data000066400000000000000000000003451520354072300173070ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999; } li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html {scroll-behavior: smooth; } test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003451520354072300466660ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content {max-width: 1200rem !important; z-index: 999; } html {scroll-behavior: smooth; } li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 7c02e557babd883301452790a2dd45e4bbbd0db8.paxheader00006660000000000000000000000245152035407230020556xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css 7c02e557babd883301452790a2dd45e4bbbd0db8.data000066400000000000000000000003451520354072300174150ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999; } html {scroll-behavior: smooth; } li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000253152035407230020447xustar00rootroot00000000000000171 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} 187f96e7920732e45565efcfd1a70d8a25b4cb15.paxheader00006660000000000000000000000257152035407230020453xustar00rootroot00000000000000175 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 187f96e7920732e45565efcfd1a70d8a25b4cb15.data000066400000000000000000000003371520354072300173100ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} html {scroll-behavior: smooth} b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.paxheader00006660000000000000000000000247152035407230021123xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.data000066400000000000000000000003371520354072300177610ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.paxheader00006660000000000000000000000253152035407230021120xustar00rootroot00000000000000171 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b71a82a7cae7dc1ab6abf124a1ad6e3ecf070d09.data000066400000000000000000000003371520354072300177610ustar00rootroot00000000000000.wy-nav-content {max-width: 1200rem !important; z-index: 999} html {scroll-behavior: smooth} li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} 6afd4a9cad7514f5fdf06a0e67c49ad1e8864aaf.paxheader00006660000000000000000000000245152035407230021105xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css 6afd4a9cad7514f5fdf06a0e67c49ad1e8864aaf.data000066400000000000000000000003751520354072300177470ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } 6afd4a9cad7514f5fdf06a0e67c49ad1e8864aaf.paxheader00006660000000000000000000000251152035407230021102xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css 6afd4a9cad7514f5fdf06a0e67c49ad1e8864aaf.data000066400000000000000000000003751520354072300177470ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003751520354072300466730ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } c6d1b0d7fb98bfeb548326830f5b7df3d5019188.paxheader00006660000000000000000000000245152035407230020533xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css c6d1b0d7fb98bfeb548326830f5b7df3d5019188.data000066400000000000000000000003751520354072300173750ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000004001520354072300466600ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 905e248355f64e0648a3cb09782beb0c5aa172a9.paxheader00006660000000000000000000000245152035407230020353xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css 905e248355f64e0648a3cb09782beb0c5aa172a9.data000066400000000000000000000004001520354072300172020ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000004001520354072300460000ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000004001520354072300466600ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 905e248355f64e0648a3cb09782beb0c5aa172a9.paxheader00006660000000000000000000000247152035407230020355xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 905e248355f64e0648a3cb09782beb0c5aa172a9.data000066400000000000000000000004001520354072300172020ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 905e248355f64e0648a3cb09782beb0c5aa172a9.paxheader00006660000000000000000000000253152035407230020352xustar00rootroot00000000000000171 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 905e248355f64e0648a3cb09782beb0c5aa172a9.data000066400000000000000000000004001520354072300172020ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000004001520354072300472160ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 5c89a40b818c5db6c1398e63c7b43e905dcd51b6.paxheader00006660000000000000000000000247152035407230020530xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css 5c89a40b818c5db6c1398e63c7b43e905dcd51b6.data000066400000000000000000000004001520354072300173550ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 5c14ff51efefd248ab080b9facf05ad288d6add0.paxheader00006660000000000000000000000251152035407230021145xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css 5c14ff51efefd248ab080b9facf05ad288d6add0.data000066400000000000000000000003671520354072300200130ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } 5c14ff51efefd248ab080b9facf05ad288d6add0.paxheader00006660000000000000000000000255152035407230021151xustar00rootroot00000000000000173 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css 5c14ff51efefd248ab080b9facf05ad288d6add0.data000066400000000000000000000003671520354072300200130ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } b18f4e00eea275cb21ecaca4a3a4e5bc97b30886.paxheader00006660000000000000000000000245152035407230020773xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css b18f4e00eea275cb21ecaca4a3a4e5bc97b30886.data000066400000000000000000000003671520354072300176360ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } b18f4e00eea275cb21ecaca4a3a4e5bc97b30886.paxheader00006660000000000000000000000251152035407230020770xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b18f4e00eea275cb21ecaca4a3a4e5bc97b30886.data000066400000000000000000000003671520354072300176360ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.paxheader00006660000000000000000000000245152035407230021063xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.data000066400000000000000000000003721520354072300177220ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.paxheader00006660000000000000000000000251152035407230021060xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.data000066400000000000000000000003721520354072300177220ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003721520354072300466700ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } b0dc652e98181318f162215a66b731d2e9ee9b35.paxheader00006660000000000000000000000245152035407230020300xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b0dc652e98181318f162215a66b731d2e9ee9b35.data000066400000000000000000000003721520354072300171370ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.paxheader00006660000000000000000000000253152035407230021062xustar00rootroot00000000000000171 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.data000066400000000000000000000003721520354072300177220ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.paxheader00006660000000000000000000000257152035407230021066xustar00rootroot00000000000000175 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 2dc8aba8d4e6fd40c117fb77254c25bd12fdac9b.data000066400000000000000000000003721520354072300177220ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } b0dc652e98181318f162215a66b731d2e9ee9b35.paxheader00006660000000000000000000000247152035407230020302xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b0dc652e98181318f162215a66b731d2e9ee9b35.data000066400000000000000000000003721520354072300171370ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } b0dc652e98181318f162215a66b731d2e9ee9b35.paxheader00006660000000000000000000000253152035407230020277xustar00rootroot00000000000000171 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b0dc652e98181318f162215a66b731d2e9ee9b35.data000066400000000000000000000003721520354072300171370ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } ffbd0e7d9fd07cd67f3e9eca60809affb1b4a9a5.paxheader00006660000000000000000000000245152035407230021251xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css ffbd0e7d9fd07cd67f3e9eca60809affb1b4a9a5.data000066400000000000000000000004231520354072300201050ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } ffbd0e7d9fd07cd67f3e9eca60809affb1b4a9a5.paxheader00006660000000000000000000000251152035407230021246xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css ffbd0e7d9fd07cd67f3e9eca60809affb1b4a9a5.data000066400000000000000000000004231520354072300201050ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000004231520354072300466670ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } 8718aede8b105dae3202c8ca28e38f2937a50525.paxheader00006660000000000000000000000245152035407230020432xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css 8718aede8b105dae3202c8ca28e38f2937a50525.data000066400000000000000000000004231520354072300172660ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000004261520354072300466720ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 67a5fe03305c3da5f5fee7e88503711006bc1d32.paxheader00006660000000000000000000000245152035407230020422xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css 67a5fe03305c3da5f5fee7e88503711006bc1d32.data000066400000000000000000000004261520354072300172610ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000004261520354072300460120ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000004261520354072300466720ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 67a5fe03305c3da5f5fee7e88503711006bc1d32.paxheader00006660000000000000000000000247152035407230020424xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 67a5fe03305c3da5f5fee7e88503711006bc1d32.data000066400000000000000000000004261520354072300172610ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 67a5fe03305c3da5f5fee7e88503711006bc1d32.paxheader00006660000000000000000000000253152035407230020421xustar00rootroot00000000000000171 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 67a5fe03305c3da5f5fee7e88503711006bc1d32.data000066400000000000000000000004261520354072300172610ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000004261520354072300472300ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 49a3b1aa8a5be853400bcb675e950bf12c65b150.paxheader00006660000000000000000000000247152035407230020472xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css 49a3b1aa8a5be853400bcb675e950bf12c65b150.data000066400000000000000000000004261520354072300173270ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 76b99765d64b9879a57d4560eb86036750649694.paxheader00006660000000000000000000000251152035407230017775xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css 76b99765d64b9879a57d4560eb86036750649694.data000066400000000000000000000004071520354072300166360ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } 76b99765d64b9879a57d4560eb86036750649694.paxheader00006660000000000000000000000255152035407230020001xustar00rootroot00000000000000173 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css 76b99765d64b9879a57d4560eb86036750649694.data000066400000000000000000000004071520354072300166360ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } 9adc67a5f686da471b4cb6942fe939488122808e.paxheader00006660000000000000000000000245152035407230020411xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css 9adc67a5f686da471b4cb6942fe939488122808e.data000066400000000000000000000004071520354072300172470ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } 9adc67a5f686da471b4cb6942fe939488122808e.paxheader00006660000000000000000000000251152035407230020406xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css 9adc67a5f686da471b4cb6942fe939488122808e.data000066400000000000000000000004071520354072300172470ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } 19c3f36cd6a48079474d36fb25751aa7ae884c87.paxheader00006660000000000000000000000245152035407230020402xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css 19c3f36cd6a48079474d36fb25751aa7ae884c87.data000066400000000000000000000004121520354072300172340ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 19c3f36cd6a48079474d36fb25751aa7ae884c87.paxheader00006660000000000000000000000251152035407230020377xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css 19c3f36cd6a48079474d36fb25751aa7ae884c87.data000066400000000000000000000004121520354072300172340ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000004121520354072300466650ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 8a676108a0e1c58774222eb08dbc6c7a2019e5d2.paxheader00006660000000000000000000000245152035407230020345xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css 8a676108a0e1c58774222eb08dbc6c7a2019e5d2.data000066400000000000000000000004121520354072300171770ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 19c3f36cd6a48079474d36fb25751aa7ae884c87.paxheader00006660000000000000000000000253152035407230020401xustar00rootroot00000000000000171 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 19c3f36cd6a48079474d36fb25751aa7ae884c87.data000066400000000000000000000004121520354072300172340ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 19c3f36cd6a48079474d36fb25751aa7ae884c87.paxheader00006660000000000000000000000257152035407230020405xustar00rootroot00000000000000175 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 19c3f36cd6a48079474d36fb25751aa7ae884c87.data000066400000000000000000000004121520354072300172340ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 8a676108a0e1c58774222eb08dbc6c7a2019e5d2.paxheader00006660000000000000000000000247152035407230020347xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css 8a676108a0e1c58774222eb08dbc6c7a2019e5d2.data000066400000000000000000000004121520354072300171770ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 8a676108a0e1c58774222eb08dbc6c7a2019e5d2.paxheader00006660000000000000000000000253152035407230020344xustar00rootroot00000000000000171 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css 8a676108a0e1c58774222eb08dbc6c7a2019e5d2.data000066400000000000000000000004121520354072300171770ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } fa2263f4ee9320fe243b3f4b639fd64720f060ed.paxheader00006660000000000000000000000247152035407230020515xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css fa2263f4ee9320fe243b3f4b639fd64720f060ed.data000066400000000000000000000003621520354072300173510ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } fa2263f4ee9320fe243b3f4b639fd64720f060ed.paxheader00006660000000000000000000000253152035407230020512xustar00rootroot00000000000000171 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css fa2263f4ee9320fe243b3f4b639fd64720f060ed.data000066400000000000000000000003621520354072300173510ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003621520354072300472740ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } 306b110b1d93e38177c52f344abfe14afa25df32.paxheader00006660000000000000000000000247152035407230020471xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css 306b110b1d93e38177c52f344abfe14afa25df32.data000066400000000000000000000003621520354072300173250ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css000066400000000000000000000003651520354072300472770ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 60d3152d9dd6b55850242a0e9ac43e2923347d57.paxheader00006660000000000000000000000247152035407230020214xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css 60d3152d9dd6b55850242a0e9ac43e2923347d57.data000066400000000000000000000003651520354072300170530ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003651520354072300464170ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css000066400000000000000000000003651520354072300472770ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 60d3152d9dd6b55850242a0e9ac43e2923347d57.paxheader00006660000000000000000000000251152035407230020207xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css 60d3152d9dd6b55850242a0e9ac43e2923347d57.data000066400000000000000000000003651520354072300170530ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 60d3152d9dd6b55850242a0e9ac43e2923347d57.paxheader00006660000000000000000000000255152035407230020213xustar00rootroot00000000000000173 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css 60d3152d9dd6b55850242a0e9ac43e2923347d57.data000066400000000000000000000003651520354072300170530ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } 19529d12ff589331b5d918d5e110e260c8f5f080.paxheader00006660000000000000000000000245152035407230020224xustar00rootroot00000000000000165 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css 19529d12ff589331b5d918d5e110e260c8f5f080.data000066400000000000000000000003651520354072300170650ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } 19529d12ff589331b5d918d5e110e260c8f5f080.paxheader00006660000000000000000000000251152035407230020221xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css 19529d12ff589331b5d918d5e110e260c8f5f080.data000066400000000000000000000003651520354072300170650ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } ba6d847e4ea7ac99b667b4edf090933319baa4f6.paxheader00006660000000000000000000000253152035407230020672xustar00rootroot00000000000000171 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css ba6d847e4ea7ac99b667b4edf090933319baa4f6.data000066400000000000000000000003571520354072300175350ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } ba6d847e4ea7ac99b667b4edf090933319baa4f6.paxheader00006660000000000000000000000257152035407230020676xustar00rootroot00000000000000175 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css ba6d847e4ea7ac99b667b4edf090933319baa4f6.data000066400000000000000000000003571520354072300175350ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important } html { scroll-behavior: smooth } 1efa5e52ce759aed92396b6670fc66c4a4c3faa5.paxheader00006660000000000000000000000247152035407230020751xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css 1efa5e52ce759aed92396b6670fc66c4a4c3faa5.data000066400000000000000000000003571520354072300176110ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } 1efa5e52ce759aed92396b6670fc66c4a4c3faa5.paxheader00006660000000000000000000000253152035407230020746xustar00rootroot00000000000000171 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css 1efa5e52ce759aed92396b6670fc66c4a4c3faa5.data000066400000000000000000000003571520354072300176110ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999 } html { scroll-behavior: smooth } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.paxheader00006660000000000000000000000247152035407230020764xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.data000066400000000000000000000003621520354072300176200ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.paxheader00006660000000000000000000000253152035407230020761xustar00rootroot00000000000000171 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.data000066400000000000000000000003621520354072300176200ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css000066400000000000000000000003621520354072300472740ustar00rootroot00000000000000sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } fb0383d5e7995f146b284027b92caa723e1874fb.paxheader00006660000000000000000000000247152035407230020371xustar00rootroot00000000000000167 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css fb0383d5e7995f146b284027b92caa723e1874fb.data000066400000000000000000000003621520354072300172250ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.paxheader00006660000000000000000000000255152035407230020763xustar00rootroot00000000000000173 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.data000066400000000000000000000003621520354072300176200ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.paxheader00006660000000000000000000000261152035407230020760xustar00rootroot00000000000000177 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css d5a9c42ddc8ec6cca6b78cb569f8346086c95ea2.data000066400000000000000000000003621520354072300176200ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } html { scroll-behavior: smooth; } fb0383d5e7995f146b284027b92caa723e1874fb.paxheader00006660000000000000000000000251152035407230020364xustar00rootroot00000000000000169 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css fb0383d5e7995f146b284027b92caa723e1874fb.data000066400000000000000000000003621520354072300172250ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } fb0383d5e7995f146b284027b92caa723e1874fb.paxheader00006660000000000000000000000255152035407230020370xustar00rootroot00000000000000173 path=sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css fb0383d5e7995f146b284027b92caa723e1874fb.data000066400000000000000000000003621520354072300172250ustar00rootroot00000000000000.wy-nav-content { max-width: 1200rem !important; z-index: 999; } html { scroll-behavior: smooth; } li p:last-child { font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } sphinx-toolbox-dict2css-c0c963c/tests/test_dict2css_/test_loads.yml000066400000000000000000000002701520354072300256010ustar00rootroot00000000000000.wy-nav-content: max-width: - 1200rem - important '@media screen': html: scroll-behavior: smooth li p:last-child: margin-bottom: - 12em - important margin-top: 6em sphinx-toolbox-dict2css-c0c963c/tox.ini000066400000000000000000000155401520354072300201600ustar00rootroot00000000000000# This file is managed by 'repo_helper'. # You may add new sections, but any changes made to the following sections will be lost: # * tox # * envlists # * testenv # * testenv:.package # * testenv:py313-dev # * testenv:py313 # * testenv:py312-dev # * testenv:py312 # * testenv:docs # * testenv:build # * testenv:lint # * testenv:perflint # * testenv:mypy # * testenv:pyup # * testenv:coverage # * flake8 # * coverage:run # * coverage:report # * check-wheel-contents # * pytest [tox] envlist = py38, py39, py310, py311, py312, py313, pypy38, pypy39, mypy, build skip_missing_interpreters = True isolated_build = True requires = pip>=21,!=22.2 tox-envlist>=0.2.1 tox~=3.0 virtualenv!=20.16.0,<20.39 [envlists] test = py38, py39, py310, py311, py312, py313, pypy38, pypy39 qa = mypy, lint cov = py39, coverage [testenv] setenv = PYTHONDEVMODE=1 PIP_DISABLE_PIP_VERSION_CHECK=1 SETUPTOOLS_USE_DISTUTILS=stdlib download = True deps = -r{toxinidir}/tests/requirements.txt commands = python --version python -m pytest --cov=dict2css -r aR tests/ {posargs} [testenv:.package] setenv = PYTHONDEVMODE=1 PIP_DISABLE_PIP_VERSION_CHECK=1 [testenv:py313] setenv = PYTHONDEVMODE=1 PIP_DISABLE_PIP_VERSION_CHECK=1 [testenv:py312] setenv = PYTHONDEVMODE=1 PIP_DISABLE_PIP_VERSION_CHECK=1 [testenv:docs] setenv = SHOW_TODOS = 1 passenv = SPHINX_BUILDER basepython = python3.9 changedir = {toxinidir}/doc-source deps = -r{toxinidir}/doc-source/requirements.txt commands = sphinx-build -M {env:SPHINX_BUILDER:html} . ./build {posargs} [testenv:build] setenv = PYTHONDEVMODE=1 PIP_DISABLE_PIP_VERSION_CHECK=1 PIP_PREFER_BINARY=1 UNSAFE_PYO3_SKIP_VERSION_CHECK=1 skip_install = True changedir = {toxinidir} deps = build[virtualenv]>=0.3.1 check-wheel-contents>=0.1.0 twine>=3.2.0 cryptography<40; implementation_name == "pypy" and python_version <= "3.7" commands = python -m build --sdist --wheel "{toxinidir}" twine check dist/*.tar.gz dist/*.whl check-wheel-contents dist/ [testenv:lint] basepython = python3.9 changedir = {toxinidir} ignore_errors = True skip_install = True deps = flake8>=3.8.2,<5 flake8-2020>=1.6.0 flake8-builtins>=1.5.3 flake8-docstrings>=1.5.0 flake8-dunder-all>=0.1.1 flake8-encodings>=0.1.0 flake8-github-actions>=0.1.0 git+https://github.com/python-formate/flake8-noqa.git@v1.2.2-python-formate.0 flake8-pyi>=20.10.0,<=22.8.0 flake8-pytest-style>=1.3.0,<2 flake8-quotes>=3.3.0 flake8-slots>=0.1.0 flake8-sphinx-links>=0.0.4 flake8-strftime>=0.1.1 flake8-typing-imports>=1.10.0 flake8-params>=0.1.0 flake8-unused-fstrings>=2.0.0 git+https://github.com/python-formate/flake8-commas.git@4.0.0-python-formate.0 git+https://github.com/domdfcoding/restructuredtext-lint.git@fix-deprecations git+https://github.com/domdfcoding/flake8-rst-docstrings-sphinx.git git+https://github.com/domdfcoding/flake8-rst-docstrings.git git+https://github.com/python-formate/flake8-unused-arguments.git@magic-methods git+https://github.com/python-formate/flake8-missing-annotations.git git+https://github.com/domdfcoding/pydocstyle.git@stub-functions pygments>=2.7.1 commands = python3 -m flake8_rst_docstrings_sphinx dict2css tests --allow-toolbox {posargs} [testenv:perflint] basepython = python3.9 changedir = {toxinidir} ignore_errors = True skip_install = True deps = perflint commands = python3 -m perflint dict2css {posargs} [testenv:mypy] basepython = python3.9 ignore_errors = True changedir = {toxinidir} deps = mypy==1.17.1 -r{toxinidir}/tests/requirements.txt -r{toxinidir}/stubs.txt commands = mypy dict2css tests {posargs} [testenv:pyup] basepython = python3.9 skip_install = True ignore_errors = True changedir = {toxinidir} deps = pyupgrade-directories commands = pyup_dirs dict2css tests --py36-plus --recursive [testenv:coverage] basepython = python3.9 skip_install = True ignore_errors = True whitelist_externals = /bin/bash passenv = COV_PYTHON_VERSION COV_PLATFORM COV_PYTHON_IMPLEMENTATION * changedir = {toxinidir} deps = coverage>=5 coverage_pyver_pragma>=0.2.1 commands = /bin/bash -c "rm -rf htmlcov" coverage html /bin/bash -c "DISPLAY=:0 firefox 'htmlcov/index.html'" [flake8] max-line-length = 120 select = E111 E112 E113 E121 E122 E125 E127 E128 E129 E131 E133 E201 E202 E203 E211 E222 E223 E224 E225 E225 E226 E227 E228 E231 E241 E242 E251 E261 E262 E265 E271 E272 E303 E304 E306 E402 E502 E703 E711 E712 E713 E714 E721 W291 W292 W293 W391 W504 YTT101 YTT102 YTT103 YTT201 YTT202 YTT203 YTT204 YTT301 YTT302 YTT303 STRFTIME001 STRFTIME002 SXL001 NUF001 PT001 PT002 PT003 PT006 PT007 PT008 PT009 PT010 PT011 PT012 PT013 PT014 PT015 PT016 PT017 PT018 PT019 PT020 PT021 RST201 RST202 RST203 RST204 RST205 RST206 RST207 RST208 RST210 RST211 RST212 RST213 RST214 RST215 RST216 RST217 RST218 RST219 RST299 RST301 RST302 RST303 RST304 RST305 RST306 RST399 RST401 RST499 RST900 RST901 RST902 RST903 Q001 Q002 Q003 A001 A002 TYP001 TYP002 TYP003 TYP004 TYP005 TYP006 ENC001 ENC002 ENC003 ENC004 ENC011 ENC012 ENC021 ENC022 ENC023 ENC024 ENC025 ENC026 Y001,Y002 Y003 Y004 Y005 Y006 Y007 Y008 Y009 Y010 Y011 Y012 Y013 Y014 Y015 Y090 Y091 NQA001 NQA002 NQA003 NQA004 NQA005 NQA102 NQA103 C818 C819 E301 E302 E305 D100 D101 D102 D103 D104 D106 D201 D204 D207 D208 D209 D210 D211 D212 D213 D214 D215 D300 D301 D400 D402 D403 D404 D415 D417 DALL000 SLOT000 SLOT001 SLOT002 PRM001 PRM002 PRM003 extend-exclude = doc-source,old,build,dist,__pkginfo__.py,setup.py,venv rst-directives = TODO autosummary-widths envvar extras-require license license-info rst-roles = choosealicense per-file-ignores = tests/*: D100 D101 D102 D103 D104 D106 D201 D204 D207 D208 D209 D210 D211 D212 D213 D214 D215 D300 D301 D400 D402 D403 D404 D415 D417 DALL000 SLOT000 SLOT001 SLOT002 PRM001 PRM002 PRM003 */*.pyi: E301 E302 E305 D100 D101 D102 D103 D104 D106 D201 D204 D207 D208 D209 D210 D211 D212 D213 D214 D215 D300 D301 D400 D402 D403 D404 D415 D417 DALL000 SLOT000 SLOT001 SLOT002 PRM001 PRM002 PRM003 pytest-parametrize-names-type = csv inline-quotes = " multiline-quotes = """ docstring-quotes = """ count = True min_python_version = 3.8 unused-arguments-ignore-abstract-functions = True unused-arguments-ignore-overload-functions = True unused-arguments-ignore-magic-methods = True unused-arguments-ignore-variadic-names = True [coverage:run] plugins = coverage_pyver_pragma [coverage:report] fail_under = 100 show_missing = True exclude_lines = raise AssertionError raise NotImplementedError if 0: if False: if TYPE_CHECKING if typing.TYPE_CHECKING if __name__ == .__main__.: [check-wheel-contents] ignore = W002 toplevel = dict2css package = dict2css [pytest] addopts = --color yes --durations 25 timeout = 300