We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 388b4de commit 9d020b9Copy full SHA for 9d020b9
conda/meta.yaml
@@ -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
33
34
+test:
35
+ imports:
36
+ - omnsga
0 commit comments