├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin └── pim ├── collaborators.md ├── pim ├── __init__.py ├── cli.py ├── commands │ ├── __init__.py │ ├── init.py │ ├── install.py │ ├── ls.py │ └── uninstall.py ├── templates │ ├── MANIFEST.in.txt │ ├── __init__.py.txt │ ├── setup.cfg.txt │ └── setup.py.txt └── utils.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── test_commands.py └── test_main.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info/ 3 | build/ 4 | dist/ 5 | .coverage 6 | .cache/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/README.md -------------------------------------------------------------------------------- /bin/pim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/bin/pim -------------------------------------------------------------------------------- /collaborators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/collaborators.md -------------------------------------------------------------------------------- /pim/__init__.py: -------------------------------------------------------------------------------- 1 | __version__='1.0.1' -------------------------------------------------------------------------------- /pim/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/pim/cli.py -------------------------------------------------------------------------------- /pim/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/pim/commands/__init__.py -------------------------------------------------------------------------------- /pim/commands/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/pim/commands/init.py -------------------------------------------------------------------------------- /pim/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/pim/commands/install.py -------------------------------------------------------------------------------- /pim/commands/ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/pim/commands/ls.py -------------------------------------------------------------------------------- /pim/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/pim/commands/uninstall.py -------------------------------------------------------------------------------- /pim/templates/MANIFEST.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/pim/templates/MANIFEST.in.txt -------------------------------------------------------------------------------- /pim/templates/__init__.py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/pim/templates/__init__.py.txt -------------------------------------------------------------------------------- /pim/templates/setup.cfg.txt: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = {{ readme }} 3 | 4 | [wheel] 5 | universal = 1 -------------------------------------------------------------------------------- /pim/templates/setup.py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/pim/templates/setup.py.txt -------------------------------------------------------------------------------- /pim/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/pim/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | 4 | [wheel] 5 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/tests/test_commands.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeman-lab/pim/HEAD/tests/test_main.py --------------------------------------------------------------------------------