Skip to content

Commit 1ced9a2

Browse files
EliEli
Eli
authored and
Eli
committed
Fixed entry points for conda recipe to mirror setup.py. Since these have all been moved to dms_datastore, vtools no longer provides console scripts.
1 parent 64ac064 commit 1ced9a2

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

conda.recipe/meta.yaml

+3-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@ build:
1717
script: {{ PYTHON }} -m pip install --no-deps --ignore-installed -vv .
1818
noarch: python
1919
entry_points:
20-
- download_noaa = vtools.datastore.download_noaa:main
21-
- download_cdec = vtools.datastore.download_cdec:main
22-
- download_wdl = vtools.datastore.download_wdl:main
23-
- download_nwis = vtools.datastore.download_nwis:main
24-
- station_info = vtools.datastore.station_info:main
20+
{% for entry in data['entry_points']['console_scripts'] %}
21+
- {{ entry.split('=')[0].strip() }} = {{ entry.split('=')[1].strip() }}
22+
{% endfor %}
2523

2624

2725
requirements:

0 commit comments

Comments
 (0)