diff --git a/recipes/qm_tools_aw/meta.yaml b/recipes/qm_tools_aw/meta.yaml new file mode 100644 index 0000000000000..9ff9b28dd663a --- /dev/null +++ b/recipes/qm_tools_aw/meta.yaml @@ -0,0 +1,46 @@ +{% set name = "qm-tools-aw" %} +{% set version = "1.4.2" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz + sha256: e8292f3474ccdd62e636691f4a2822bbae89bf9a339a634af98ebd310a4ae25e + +build: + script: {{ PYTHON }} -m pip install . -vv + number: 0 + +requirements: + build: + - {{ compiler('c') }} + host: + - python + - pip + - setuptools + run: + - python + +test: + imports: + - simplejson + - simplejson.tests + requires: + - pip + commands: + - pip check + +about: + home: https://github.com/Awallace3/qm_tools + summary: 'Provides some functions that I have found value in reusing for quantum chemistry related tasks.' + description: | + Provides some functions that I have found value in reusing for quantum chemistry related tasks. + license: MIT + license_family: MIT + license_file: LICENSE + +extra: + recipe-maintainers: + - Awallace3