Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding pysciencemode #28220

Merged
merged 26 commits into from
Nov 24, 2024
Merged
Changes from 23 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions recipes/pyScienceMode/meta.yaml
Original file line number Diff line number Diff line change
@@ -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
Kev1CO marked this conversation as resolved.
Show resolved Hide resolved


requirements:
host:
- python >={{ python_min }}
Kev1CO marked this conversation as resolved.
Show resolved Hide resolved
- 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