-
Notifications
You must be signed in to change notification settings - Fork 1
/
anaconda-project.yml
57 lines (50 loc) · 1.11 KB
/
anaconda-project.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
49
50
51
52
53
54
55
56
57
# Copyright (c) 2021 Dane Freeman.
# Distributed under the terms of the Modified BSD License.
name: jupyterlab-graph-lsp
platforms:
- linux-64
- osx-64
- win-64
commands:
ext:pack:
unix: &pack cd dist && npm pack ..
windows: *pack
env_specs:
default:
inherit_from:
- jupyterlab_graph_lsp
- _utest
- _lint
packages:
- pip
- python >=3.7,<3.8.0a0
- twine
- wheel
jupyterlab_graph_lsp:
description: binder environment, not actually created
channels:
- https://conda.anaconda.org/conda-forge
packages:
- ipython >=7
- ipywidgets >=7.5.1,<8
- jupyterlab >=3,<4
- jupyterlab-lsp >=3.5,<4
- jupyter-lsp-python-plugins
- nodejs >=14,<15
- python >=3.7
- rdflib >=5,<6
- gql
_lint:
description: linting/formatting environment. not actually created.
packages:
- black
- isort
- pyflakes
- flake8
_utest:
description: unit test environment. not actually created.
packages:
- pytest-asyncio
- pytest-cov
- pytest-html
- pytest-xdist