Skip to content

Commit 9d020b9

Browse files
committed
Add conda recipe
1 parent 388b4de commit 9d020b9

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

conda/meta.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{% set data = load_setup_py_data() %}
2+
{% set version = environ.get("GIT_DESCRIBE_TAG").lstrip("v") %}
3+
4+
package:
5+
name: openmdao-nsga
6+
version: "{{ version }}"
7+
8+
about:
9+
home: https://github.com/ovidner/openmdao-nsga
10+
license: MIT
11+
license_file: LICENSE
12+
13+
source:
14+
git_url: ../
15+
16+
build:
17+
noarch: python
18+
script: "python -m pip install . --no-deps --ignore-installed -vv "
19+
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
20+
21+
requirements:
22+
build:
23+
- python
24+
- pip
25+
- setuptools_scm
26+
run:
27+
- deap
28+
- numpy
29+
- openmdao
30+
- pydoe2
31+
- pygmo
32+
- python
33+
34+
test:
35+
imports:
36+
- omnsga

0 commit comments

Comments
 (0)