We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64ac064 commit 1ced9a2Copy full SHA for 1ced9a2
conda.recipe/meta.yaml
@@ -17,11 +17,9 @@ build:
17
script: {{ PYTHON }} -m pip install --no-deps --ignore-installed -vv .
18
noarch: python
19
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
+ {% for entry in data['entry_points']['console_scripts'] %}
+ - {{ entry.split('=')[0].strip() }} = {{ entry.split('=')[1].strip() }}
+ {% endfor %}
25
26
27
requirements:
0 commit comments