diff --git a/recipes/pyScienceMode/meta.yaml b/recipes/pyScienceMode/meta.yaml new file mode 100644 index 0000000000000..2bdea238e8b92 --- /dev/null +++ b/recipes/pyScienceMode/meta.yaml @@ -0,0 +1,51 @@ +{% set name = "pysciencemode" %} +{% set version = "1.1.4" %} +{% set python_min = "3.10" %} + +package: + name: "{{ name|lower }}" + version: "{{ version }}" + +source: + url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/pysciencemode-{{ version }}.tar.gz + sha256: 91952b59df0ab6b7472c302fd0b5777e271958e57c48d00d063ca1769faa70e6 + +build: + number: 0 + noarch: python + script: {{ PYTHON }} -m pip install . -vv + + +requirements: + host: + - python {{ python_min }} + - hatchling + - pip + run: + - python >={{ python_min }} + - numpy + - crccheck + - colorama + - pyserial + + +test: + imports: + - pysciencemode + commands: + - pip check + requires: + - python {{ python_min }} + - pip +about: + home: "https://github.com/s2mLab/pyScienceMode" + license: MIT + license_family: MIT + license_file: LICENSE + summary: "Python interface to control the Rehastim2 and RehastimP24 devices." + doc_url: https://github.com/s2mLab/pyScienceMode/blob/master/README.md + dev_url: https://github.com/s2mLab/pyScienceMode + +extra: + recipe-maintainers: + - Kev1CO