├── .codecov.yml ├── .flake8 ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── justfile ├── pyproject.toml ├── setup.cfg ├── src └── dufte │ ├── __init__.py │ ├── main.py │ └── optimize.py ├── tests ├── create_comparison.py ├── intermediate-gray.py ├── test_bar.py ├── test_move_labels.py └── test_plot.py └── tox.ini /.codecov.yml: -------------------------------------------------------------------------------- 1 | comment: no 2 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/README.md -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/dufte/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/src/dufte/__init__.py -------------------------------------------------------------------------------- /src/dufte/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/src/dufte/main.py -------------------------------------------------------------------------------- /src/dufte/optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/src/dufte/optimize.py -------------------------------------------------------------------------------- /tests/create_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/tests/create_comparison.py -------------------------------------------------------------------------------- /tests/intermediate-gray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/tests/intermediate-gray.py -------------------------------------------------------------------------------- /tests/test_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/tests/test_bar.py -------------------------------------------------------------------------------- /tests/test_move_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/tests/test_move_labels.py -------------------------------------------------------------------------------- /tests/test_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/tests/test_plot.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/dufte/HEAD/tox.ini --------------------------------------------------------------------------------