File size: 767 Bytes
e4f7c80 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | {% set name = "pgmpy" %}
{% set version = "0.1.26" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
#sha256: 668a34220342f211d4112c48b64ad696a3592b4758f9e3aac3553f968ed231b7
build:
number: 0
script: "{{ PYTHON }} -m pip install . --ignore-installed -vv"
requirements:
host:
- pip
- python
- pytorch
run:
- python
- networkx
- numpy
- scipy
- pandas
- pyparsing
- pytorch
- statsmodels
- tqdm
- joblib
- opt_einsum
test:
imports:
- pgmpy
about:
home: http://pgmpy.org/
license: MIT
license_family: MIT
summary: Python Library for Probabilistic Graphical Models
|