forked from pyomeca/pyosim
-
Notifications
You must be signed in to change notification settings - Fork 1
/
conda-recipe.yml
39 lines (32 loc) · 939 Bytes
/
conda-recipe.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{% set data = load_setup_py_data() %}
package:
name: pyosim
version: {{ data['version'] }}
source:
git_url: https://github.com/pyomeca/pyosim
build:
# If the installation is complex, or different between Unix and Windows, use
# separate bld.bat and build.sh files instead of this key. Add the line
# "skip: True # [py<35]" (for example) to limit to Python 3.5 and newer, or
# "skip: True # [not win]" to limit to Windows.
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
- pyyaml
run:
- python
# dependencies are defined in setup.py
{% for dep in data['install_requires'] %}
- {{ dep.lower() }}
{% endfor %}
test:
imports:
- pyosim
about:
home: https://github.com/pyomeca/pyosim
summary: Interface between OpenSim and the Pyomeca library
extra:
recipe-maintainers:
- mrtnz