Skip to content

Commit

Permalink
Update meta.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
aradfarahani authored Mar 1, 2025
1 parent 6385b8e commit 94f0de7
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
{% set version = environ.get('FEZRS_VERSION', '0.4.10') %}

package:
name: fezrs
version: {{ version }}
version: "{{ version }}" # This will be replaced by the script with the actual version from VERSION file

source:
url: https://pypi.io/packages/source/f/fezrs/fezrs-{{ version }}.tar.gz
sha256: 5e6881632966fbf10d97d0077952c031784b25353807a404421b412029625d78 # Update with the correct checksum
sha256: {{ sha256_placeholder }} # This will be updated by your script

build:
number: 1
Expand All @@ -26,3 +24,15 @@ requirements:
- scikit-learn
- fastapi
- opencv

test:
imports:
- fezrs # Replace this with actual module names you're testing
commands:
- pytest # Or any other test commands you want to run

about:
home: https://github.com/your-username/fezrs # Change to your repo URL
license: Apache 2.0 # Specify the license
license_file: LICENSE # If you have a LICENSE file
summary: "Your package description here."

0 comments on commit 94f0de7

Please sign in to comment.