diff --git a/recipes/paramtools/LICENSE.txt b/recipes/paramtools/LICENSE.txt new file mode 100644 index 0000000000000000000000000000000000000000..00e8e1da2aac8469ad71491ac8ec04723f1ed2fb --- /dev/null +++ b/recipes/paramtools/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Henry Doupe + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/recipes/paramtools/meta.yaml b/recipes/paramtools/meta.yaml new file mode 100644 index 0000000000000000000000000000000000000000..0204a36f85e0a102077b831c1309877aa9bacf0c --- /dev/null +++ b/recipes/paramtools/meta.yaml @@ -0,0 +1,48 @@ +{% set name = "paramtools" %} +{% set version = "0.4.1" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz + sha256: 1d3c56102039035aa3b6f0ac7e926caac7a29b57d4c6448aafbd2f0b5b7bf8da + +build: + noarch: python + number: 0 + script: "{{ PYTHON }} -m pip install . --no-deps -vv" + +requirements: + host: + - python + - pip + run: + - python + - marshmallow >=3.0.0rc4 + - numpy + - python-dateutil >=2.8.0 + +test: + imports: + - paramtools + - paramtools.contrib + +about: + home: http://github.com/PSLmodels/ParamTools + license: MIT + license_family: MIT + license_file: LICENSE.txt + summary: 'Library for parameter processing and validation with a focus on computational modeling projects ' + + description: | + ParamTools defines the inputs for computational modeling projects, + facilitates updating the default inputs, and validating the inputs. + ParamTools is also used to build GUIs. + doc_url: http://paramtools.readthedocs.io/ + dev_url: https://github.com/PSLmodels/ParamTools + +extra: + recipe-maintainers: + - hdoupe