-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yml
48 lines (48 loc) · 1.04 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# this should be very similar to https://github.com/conda-forge/pannb-feedstock/blob/master/recipe/meta.yaml
# run the following command to create a conda environment that is suitable for testing pannb
# conda env create -f environment.yml
# conda activate pannb
# python -m ipykernel install --user --name pannb --display-name pannb
# and then run this to install pannb in editable mode
# make editable
# update using
# conda env update --name pannb --file environment.yml --prune
name: pannb
channels:
- conda-forge
dependencies:
# host:
- pip
- python >=3.8
- poetry >=1,<2
# run:
- panflute >=2.1.3,<3
# run_constrained:
- coloredlogs >=14,<16
- pandoc >=2.17,<2.18
# tests:
- coverage
- coveralls
# - flake8
- pytest
# - pytest-parallel
# - pytest-xdist
# docs:
- sphinx
- sphinx_bootstrap_theme
- sphinxcontrib-apidoc
- nbsphinx >=0.8
- ipykernel
- pandas
# dev:
- isort
- mypy
- bandit
- black
- bump2version
- ghp-import >=2,<3
- nbconvert >=6,<7
- pylint
- rstcheck
- types-pyyaml
- twine