Skip to content

Commit

Permalink
Add Keras-resnet to Conda
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis-CI on github.com/conda-forge/staged-recipes authored and henrykironde committed Jun 23, 2020
1 parent a4d8fa2 commit d01ba5a
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 41 deletions.
41 changes: 0 additions & 41 deletions recipes/enlighten/meta.yaml

This file was deleted.

37 changes: 37 additions & 0 deletions recipes/keras-resnet/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
The BSD 3-Clause License

Copyright © 2017 Broad Institute, Inc. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

3. Neither the name of the Broad Institute, Inc. nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED “AS IS.” BROAD MAKES NO EXPRESS OR IMPLIED
REPRESENTATIONS OR WARRANTIES OF ANY KIND REGARDING THE SOFTWARE AND
COPYRIGHT, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, CONFORMITY WITH ANY DOCUMENTATION,
NON-INFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, WHETHER OR NOT
DISCOVERABLE. IN NO EVENT SHALL BROAD, THE COPYRIGHT HOLDERS, OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF, HAVE REASON TO KNOW, OR IN
FACT SHALL KNOW OF THE POSSIBILITY OF SUCH DAMAGE.

If, by operation of law or otherwise, any of the aforementioned warranty
disclaimers are determined inapplicable, your sole remedy, regardless of the
form of action, including, but not limited to, negligence and strict
liability, shall be replacement of the software with an updated version if one
exists.
50 changes: 50 additions & 0 deletions recipes/keras-resnet/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{% set name = "keras-resnet" %}
{% set version = "0.2.0" %}
{% set sha256 = "8ce27ba782d1b45b127af51208aefdceb2de8d2c54646bac5fc786506ce558c0" %}


package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: {{ sha256 }}

build:
number: 0
script:
- export SETUPTOOLS_SCM_PRETEND_VERSION={{ version }} # [unix]
- "{{ PYTHON }} -m pip install . -vv "

requirements:
host:
- python
- pip

run:
- python
- pytest
- keras >=2.2.4

test:
imports:

commands:
- {{ PYTHON }} -c 'import keras;'

about:
home: https://github.com/broadinstitute/keras-resnet
license: BSD
license_family: BSD
license_file: LICENSE
summary: Keras package for deep residual networks
description: |
Keras-ResNet is the Keras package for deep residual networks. It's fast and flexible.
doc_url: https://github.com/broadinstitute/keras-resnet/blob/master/README.rst
dev_url: https://github.com/broadinstitute/keras-resnet

extra:
recipe-maintainers:
- henrykironde

0 comments on commit d01ba5a

Please sign in to comment.