Skip to content

Instantly share code, notes, and snippets.

@juhasch
Created October 14, 2014 17:31
Show Gist options
  • Select an option

  • Save juhasch/fbf79d7e31563e51af15 to your computer and use it in GitHub Desktop.

Select an option

Save juhasch/fbf79d7e31563e51af15 to your computer and use it in GitHub Desktop.
Conda recipe for scikit-rf
"%PYTHON%" setup.py build --compiler=mingw32
"%PYTHON%" setup.py install
if errorlevel 1 exit 1
:: Add more build steps here, if they are necessary.
:: See
:: http://docs.continuum.io/conda/build.html
:: for a list of environment variables that are set during the build process.
#!/bin/bash
$PYTHON setup.py install
# Add more build steps here, if they are necessary.
# See
# http://docs.continuum.io/conda/build.html
# for a list of environment variables that are set during the build process.
package:
name: scikit-rf
version: !!str 0.15dev
source:
fn: scikit-rf-0.15dev.zip
url: http://nas/packages/scikit-rf-0.15dev.zip
md5: 88afa9654da23fe3b8e6799d479b735d
# patches:
# List any patch files here
# - fix.patch
# build:
#preserve_egg_dir: True
#entry_points:
# Put any entry points (scripts to be generated automatically) here. The
# syntax is module:function. For example
#
# - scikit-rf = scikit-rf:main
#
# Would create an entry point called scikit-rf that calls scikit-rf.main()
# If this is a new build for the same version, increment the build
# number. If you do not include this key, it defaults to 0.
# number: 1
requirements:
build:
- python
- setuptools
- ipython
- numpy
- scipy
- matplotlib
run:
- python
- ipython
- numpy
- scipy
- matplotlib
test:
# Python imports
imports:
- skrf.data
- skrf.io
- skrf.calibration.parametricStandard
- apps
- skrf.calibration
- skrf
- skrf.beta
- skrf.media
- skrf.src
- skrf.vi
#commands:
# You can put test commands to be run here. Use this to test that the
# entry points work.
# You can also put a file called run_test.py in the recipe that will be run
# at test time.
# requires:
# Put any additional test requirements here. For example
# - nose
about:
home: http://scikit-rf.org
license: bsd
summary: 'Open Source RF Engineering'
# See
# http://docs.continuum.io/conda/build.html for
# more information about meta.yaml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment