Skip to content

Commit

Permalink
Initial commit for Google or-tools
Browse files Browse the repository at this point in the history
  • Loading branch information
sodre committed Apr 27, 2017
1 parent 981a894 commit 316bee7
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions recipes/or-tools/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{% set name = "or-tools" %}
{% set version = "5.1" %}
{% set sha256 = "25aedf676ccc5ae246be44543572fba9be5f42f2fb0c1f7edcc6f138db207d32" %}

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

source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://github.com/google/{{ name }}/archive/v{{ version }}.tar.gz
sha256: {{ sha256 }}

build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt

requirements:
build:
- python
- setuptools
- toolchain
run:
- python

test:
imports:
- ortools

about:
home: https://developers.google.com/optimization/
# Remember to specify the license variants for BSD, Apache, GPL, and LGLP.
# Prefer the short version, e.g: GPL-2.0 instead of GNU General Public License version 2.0
# See https://opensource.org/licenses/alphabetical
license: Apache
# The license_family, i.e. "BSD" if license is "BSD-3-Clause". (optional)
license_family: MIT
# It is strongly encouraged to include a license file in the package,
# (even if the license doesn't require it) using the license_file entry.
# See http://conda.pydata.org/docs/building/meta-yaml.html#license-file
license_file: LICENSE.txt
summary: 'Google Optimization Tools is a fast and portable software suite for solving combinatorial optimization problems'

# The remaining entries in this section are optional, but recommended
description: |
doc_url: https://developers.google.com/optimization/introduction/using
dev_url: https://github.com/google/{{ name }}

extra:
recipe-maintainers:
- sodre

0 comments on commit 316bee7

Please sign in to comment.