├── .gitignore ├── Pipfile ├── Pipfile.lock ├── README.org ├── cookiecutter.json ├── hooks ├── post_gen_project.py └── pre_gen_project.py └── {{ cookiecutter.package_name }} ├── .coveragerc ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── MANIFEST.in ├── Makefile ├── Pipfile ├── README.md ├── README.org ├── pyproject.toml ├── setup.cfg ├── setup.py ├── tests └── test_{{ cookiecutter.package_name }}.py └── {{ cookiecutter.package_name }} ├── __init__.py ├── __main__.py └── from_docopt.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/.gitignore -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/README.org -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /hooks/post_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/hooks/post_gen_project.py -------------------------------------------------------------------------------- /hooks/pre_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/hooks/pre_gen_project.py -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = */_version.py -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/.gitignore -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/.pre-commit-config.yaml -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/.pylintrc -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/MANIFEST.in -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/Makefile -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/Pipfile -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/README.md -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/README.org -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/pyproject.toml: -------------------------------------------------------------------------------- 1 | 2 | [tool.black] 3 | line-length = 100 4 | py36 = true -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/setup.cfg -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/setup.py -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/tests/test_{{ cookiecutter.package_name }}.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/tests/test_{{ cookiecutter.package_name }}.py -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/{{ cookiecutter.package_name }}/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/{{ cookiecutter.package_name }}/__init__.py -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/{{ cookiecutter.package_name }}/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/{{ cookiecutter.package_name }}/__main__.py -------------------------------------------------------------------------------- /{{ cookiecutter.package_name }}/{{ cookiecutter.package_name }}/from_docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gvoysey/cookiecutter-python-scientific/HEAD/{{ cookiecutter.package_name }}/{{ cookiecutter.package_name }}/from_docopt.py --------------------------------------------------------------------------------