├── .gitignore ├── .travis.yml ├── LICENSE.md ├── MANIFEST.in ├── README.rst ├── biodownloader ├── __init__.py ├── cli.py ├── config.py ├── fetchers.py └── version.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests └── test_biodownloader.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomadeira/BioDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomadeira/BioDownloader/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomadeira/BioDownloader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomadeira/BioDownloader/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomadeira/BioDownloader/HEAD/README.rst -------------------------------------------------------------------------------- /biodownloader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomadeira/BioDownloader/HEAD/biodownloader/__init__.py -------------------------------------------------------------------------------- /biodownloader/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomadeira/BioDownloader/HEAD/biodownloader/cli.py -------------------------------------------------------------------------------- /biodownloader/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomadeira/BioDownloader/HEAD/biodownloader/config.py -------------------------------------------------------------------------------- /biodownloader/fetchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomadeira/BioDownloader/HEAD/biodownloader/fetchers.py -------------------------------------------------------------------------------- /biodownloader/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomadeira/BioDownloader/HEAD/biodownloader/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomadeira/BioDownloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomadeira/BioDownloader/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_biodownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biomadeira/BioDownloader/HEAD/tests/test_biodownloader.py --------------------------------------------------------------------------------