Skip to content

Commit ecdae21

Browse files
committed
rename package in conda recipe, add typer, tqdm as deps to conda-package
For the conda package it would be preferable to get a full functioning version. I guess that's nothing we want to change in setup.py because of runability in jypterlite.
1 parent 9c73206 commit ecdae21

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

conda-recipe/meta.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% set setup_py_data = load_setup_py_data() %}
22

33
package:
4-
name: core-bioimage-io
4+
name: bioimageio.core
55
version: {{ setup_py_data['version'] }}
66

77
source:
@@ -10,6 +10,10 @@ source:
1010
build:
1111
noarch: python
1212
number: 0
13+
entry_points:
14+
{% for ep in setup_py_data['entry_points']['console_scripts'] %}
15+
- {{ ep }}
16+
{% endfor %}
1317
script: "{{ PYTHON }} -m pip install --no-deps --ignore-installed ."
1418

1519
requirements:
@@ -18,6 +22,8 @@ requirements:
1822
- pip
1923
run:
2024
- python >=3.7
25+
- tqdm
26+
- typer
2127
{% for dep in setup_py_data['install_requires'] %}
2228
- {{ dep.lower() }}
2329
{% endfor %}

0 commit comments

Comments
 (0)