diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index d29e287..719987d 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -4,30 +4,25 @@ package: name: snakeobjects - version: {{ data['version'] }} + #version: {{ data['version'] }} + version: {{ GIT_DESCRIBE_TAG }} source: path: .. build: - # If the installation is complex, or different between Unix and Windows, use - # separate bld.bat and build.sh files instead of this key. Add the line - # "skip: True # [py<35]" (for example) to limit to Python 3.5 and newer, or - # "skip: True # [not win]" to limit to Windows. script: {{ PYTHON }} -m pip install --no-deps --ignore-installed -vv . noarch: python - + entry_points: - {% for entry in data['entry_points']['console_scripts'] %} - - {{ entry.split('=')[0].strip() }} = {{ entry.split('=')[1].strip() }} - {% endfor %} + - sobjects = snakeobjects.cli:cli + #entry_points: + # {% for entry in data['entry_points']['console_scripts'] %} + # - {{ entry.split('=')[0].strip() }} = {{ entry.split('=')[1].strip() }} + # {% endfor %} requirements: - # if you need compilers, uncomment these - # read more at https://docs.conda.io/projects/conda-build/en/latest/resources/compiler-tools.html - # build: - # - {{ compilers('c') }} host: - python - pip