├── .bumpversion.cfg ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── brand ├── brain.png ├── favicon.ico ├── favicon.png ├── logo.png ├── logo.svg └── swirl_tree.jpg ├── docs ├── Makefile ├── conf.py └── index.rst ├── exmemo ├── __init__.py ├── collectors.py ├── commands │ ├── __init__.py │ ├── cli.py │ ├── config.py │ ├── data.py │ ├── debug.py │ ├── main.py │ ├── note.py │ └── project.py ├── cookiecutter │ ├── __init__.py │ ├── cookiecutter.json │ ├── hooks │ │ └── post_gen_project.py │ └── {{cookiecutter.project_slug}} │ │ ├── .exmemorc │ │ ├── .gitignore │ │ ├── README.rst │ │ ├── analysis │ │ ├── .bumpversion.cfg │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── MANIFEST.in │ │ ├── README.rst │ │ ├── setup.py │ │ ├── tests │ │ │ └── .coveragerc │ │ └── {{cookiecutter.project_slug}} │ │ │ └── __init__.py │ │ └── notebook │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── conf.py │ │ ├── ideas_and_feedback.rst │ │ ├── index.rst │ │ └── unexpected_observations.rst ├── errors.py ├── plugins.py ├── sphinx │ ├── __init__.py │ ├── biology.py │ ├── datatable.py │ ├── doi.py │ ├── favicon.ico │ ├── notebook.py │ ├── static │ │ ├── handsontable-master.zip │ │ ├── handsontable.full.min.css │ │ └── handsontable.full.min.js │ ├── templates │ │ └── datatable.html │ └── tweaks.css ├── utils.py └── workspace.py ├── setup.py └── tests ├── .coveragerc ├── test_init.py ├── test_no_missing_files.py └── test_sphinx_doi.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/README.rst -------------------------------------------------------------------------------- /brand/brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/brand/brain.png -------------------------------------------------------------------------------- /brand/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/brand/favicon.ico -------------------------------------------------------------------------------- /brand/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/brand/favicon.png -------------------------------------------------------------------------------- /brand/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/brand/logo.png -------------------------------------------------------------------------------- /brand/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/brand/logo.svg -------------------------------------------------------------------------------- /brand/swirl_tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/brand/swirl_tree.jpg -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/docs/index.rst -------------------------------------------------------------------------------- /exmemo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/__init__.py -------------------------------------------------------------------------------- /exmemo/collectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/collectors.py -------------------------------------------------------------------------------- /exmemo/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exmemo/commands/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/commands/cli.py -------------------------------------------------------------------------------- /exmemo/commands/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/commands/config.py -------------------------------------------------------------------------------- /exmemo/commands/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/commands/data.py -------------------------------------------------------------------------------- /exmemo/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/commands/debug.py -------------------------------------------------------------------------------- /exmemo/commands/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/commands/main.py -------------------------------------------------------------------------------- /exmemo/commands/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/commands/note.py -------------------------------------------------------------------------------- /exmemo/commands/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/commands/project.py -------------------------------------------------------------------------------- /exmemo/cookiecutter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/__init__.py -------------------------------------------------------------------------------- /exmemo/cookiecutter/cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/cookiecutter.json -------------------------------------------------------------------------------- /exmemo/cookiecutter/hooks/post_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/hooks/post_gen_project.py -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/.exmemorc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/.gitignore: -------------------------------------------------------------------------------- 1 | /data 2 | /documents 3 | -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/README.rst -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/.bumpversion.cfg -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/.gitignore -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/.travis.yml -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/MANIFEST.in -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/README.rst -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/setup.py -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/tests/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/tests/.coveragerc -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/analysis/{{cookiecutter.project_slug}}/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | __version__ = '0.0.0' 4 | -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/notebook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/notebook/.gitignore -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/notebook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/notebook/Makefile -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/notebook/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/notebook/conf.py -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/notebook/ideas_and_feedback.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/notebook/ideas_and_feedback.rst -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/notebook/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/notebook/index.rst -------------------------------------------------------------------------------- /exmemo/cookiecutter/{{cookiecutter.project_slug}}/notebook/unexpected_observations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/cookiecutter/{{cookiecutter.project_slug}}/notebook/unexpected_observations.rst -------------------------------------------------------------------------------- /exmemo/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/errors.py -------------------------------------------------------------------------------- /exmemo/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/plugins.py -------------------------------------------------------------------------------- /exmemo/sphinx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/sphinx/__init__.py -------------------------------------------------------------------------------- /exmemo/sphinx/biology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/sphinx/biology.py -------------------------------------------------------------------------------- /exmemo/sphinx/datatable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/sphinx/datatable.py -------------------------------------------------------------------------------- /exmemo/sphinx/doi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/sphinx/doi.py -------------------------------------------------------------------------------- /exmemo/sphinx/favicon.ico: -------------------------------------------------------------------------------- 1 | ../../brand/favicon.ico -------------------------------------------------------------------------------- /exmemo/sphinx/notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/sphinx/notebook.py -------------------------------------------------------------------------------- /exmemo/sphinx/static/handsontable-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/sphinx/static/handsontable-master.zip -------------------------------------------------------------------------------- /exmemo/sphinx/static/handsontable.full.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/sphinx/static/handsontable.full.min.css -------------------------------------------------------------------------------- /exmemo/sphinx/static/handsontable.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/sphinx/static/handsontable.full.min.js -------------------------------------------------------------------------------- /exmemo/sphinx/templates/datatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/sphinx/templates/datatable.html -------------------------------------------------------------------------------- /exmemo/sphinx/tweaks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/sphinx/tweaks.css -------------------------------------------------------------------------------- /exmemo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/utils.py -------------------------------------------------------------------------------- /exmemo/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/exmemo/workspace.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/setup.py -------------------------------------------------------------------------------- /tests/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/tests/.coveragerc -------------------------------------------------------------------------------- /tests/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/tests/test_init.py -------------------------------------------------------------------------------- /tests/test_no_missing_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/tests/test_no_missing_files.py -------------------------------------------------------------------------------- /tests/test_sphinx_doi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalekundert/exmemo/HEAD/tests/test_sphinx_doi.py --------------------------------------------------------------------------------