diff --git a/recipes/juliacall/meta.yaml b/recipes/juliacall/meta.yaml new file mode 100644 index 0000000000000..a6675c9d85c77 --- /dev/null +++ b/recipes/juliacall/meta.yaml @@ -0,0 +1,43 @@ +{% set name = "juliacall" %} +{% set version = "0.9.6" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/juliacall-{{ version }}.tar.gz + sha256: 055c19227df0919aa3f080c75fba264b0554b2512e0983eada0077c569f45e08 + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv + number: 0 + +requirements: + host: + - pip + - python >=3.7 + - setuptools >=42 + run: + - python >=3.7 + - juliapkg >=0.1.8,<0.2.dev0 + +test: + imports: + - juliacall + commands: + - pip check + requires: + - pip + +about: + home: http://github.com/cjdoris/PythonCall.jl + doc_url: https://cjdoris.github.io/PythonCall.jl/stable/ + summary: Julia and Python in seamless harmony + license: MIT + license_file: LICENSE + +extra: + recipe-maintainers: + - thewchan