gitextract_2mmkzg90/ ├── .flake8 ├── .github/ │ └── workflows/ │ ├── integtests.yaml │ └── tests.yaml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS ├── COPYING ├── HOWTO_RELEASE.txt ├── LICENSE ├── MANIFEST.in ├── README.rst ├── bin/ │ ├── fades │ └── fades.cmd ├── build_readme ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── index.rst │ ├── pydepmanag.rst │ ├── readme.rst │ └── requirements.txt ├── fades/ │ ├── __init__.py │ ├── __main__.py │ ├── _version.py │ ├── cache.py │ ├── envbuilder.py │ ├── file_options.py │ ├── helpers.py │ ├── logger.py │ ├── main.py │ ├── multiplatform.py │ ├── parsing.py │ ├── pipmanager.py │ └── pkgnamesdb.py ├── man/ │ └── fades.1 ├── pkg/ │ ├── debian/ │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ └── watch │ └── snap/ │ └── snapcraft.yaml ├── press.txt ├── requirements.txt ├── resources/ │ ├── gifs/ │ │ └── gifs.rst │ ├── notes.txt │ ├── slides.odp │ ├── slides_LT.odp │ └── video/ │ └── script.ods ├── setup.py ├── test ├── testdev ├── testdev.bat └── tests/ ├── __init__.py ├── conftest.py ├── examples/ │ ├── pypi_get_version_fail.json │ └── pypi_get_version_ok.json ├── integtest.py ├── test_cache/ │ ├── __init__.py │ ├── conftest.py │ ├── test_caches.py │ ├── test_comparisons.py │ ├── test_remove.py │ ├── test_selection.py │ └── test_store.py ├── test_envbuilder.py ├── test_file_options.py ├── test_files/ │ ├── fades_as_part_of_other_word.py │ ├── no_req.py │ ├── req_all.py │ ├── req_class.py │ ├── req_def.py │ ├── req_mixed_backends.py │ ├── req_module.py │ ├── req_module_2.py │ └── req_module_3.py ├── test_helpers.py ├── test_infra.py ├── test_logger.py ├── test_main.py ├── test_multiplatform.py ├── test_parsing/ │ ├── test_docstrings.py │ ├── test_file.py │ ├── test_file_reqs.py │ ├── test_manual.py │ ├── test_reqs.py │ └── test_vcs_dependency.py ├── test_pipmanager.py └── test_pkgnamesdb.py