43 lines
706 B
YAML
43 lines
706 B
YAML
{% set name = "deeplearning-qtools" %}
|
|
{% set version = "0.0.1" %}
|
|
|
|
package:
|
|
name: {{ name|lower }}
|
|
version: {{ version }}
|
|
|
|
source:
|
|
path: ../..
|
|
|
|
build:
|
|
noarch: python
|
|
number: 0
|
|
script: "{{ PYTHON }} -m pip install . --no-deps --no-build-isolation -vv"
|
|
|
|
requirements:
|
|
host:
|
|
- python >=3.10
|
|
- pip
|
|
- setuptools >=68
|
|
- wheel
|
|
run:
|
|
- python >=3.10
|
|
- numpy >=1.24
|
|
- pandas >=2.0
|
|
- matplotlib >=3.7
|
|
- scikit-learn >=1.3
|
|
- openpyxl >=3.1
|
|
- pytorch >=2.0
|
|
|
|
test:
|
|
imports:
|
|
- Qfunctions
|
|
- Qtorch
|
|
|
|
about:
|
|
summary: Reusable Qfunctions and Qtorch modules from Deeplearning
|
|
license: Proprietary
|
|
|
|
extra:
|
|
recipe-maintainers:
|
|
- deeplearning-team
|