-
Notifications
You must be signed in to change notification settings - Fork 8
/
environment.yml
26 lines (26 loc) · 1.32 KB
/
environment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: {{ cookiecutter.conda_environment }}
channels:
- conda-forge
- defaults
dependencies:
- python=={{cookiecutter.python_version}}
- jupyter # necessary to run notebooks
- jupyterlab # necessary to run notebooks
- pandas >=1.0 # generate markdown tables
- tabulate # generate markdown tables
- pandoc >=3.1.12 # necessary to compile the paper
- pandoc-crossref >=0.3.10 # necessary to compile the paper
- tectonic # necessary to compile the paper
- watermark # add metadata to notebooks
- seaborn # requirement of stargazer and we want from conda not pip
- gh # interact with github CLI
- conda-lock # allow freezing of environments for docker builds
- make # ensure makefile commands are available
- quarto
# add additional conda reqs here
- pip
- pip:
- pandoc-include # necessary to compile the paper
- pandoc-latex-admonition # necessary to compile the paper
- stargazer # good-looking regression tables
# add any dependencies not available on conda here (e.g. specific git branch/hash)