Skip to content

Commit a9116bf

Browse files
committed
added conda build.yml and recipe
1 parent 5434621 commit a9116bf

File tree

5 files changed

+103
-1
lines changed

5 files changed

+103
-1
lines changed

.binstar.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package: scikit-rf
2+
user: scikit-rf
3+
4+
install:
5+
- conda config --add channels scikit-rf
6+
7+
8+
9+
platform:
10+
- linux-64
11+
#- linux-32
12+
- osx-64
13+
#- win-32
14+
- win-64
15+
engine:
16+
- python=2.7
17+
- python=3.3
18+
script:
19+
- conda build conda.recipe --quiet
20+
21+
iotimeout: 600
22+
23+
build_targets: conda
24+
25+
notifications:
26+
email:
27+
recipients: ['[email protected]']

conda.recipe/bld.bat

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
"%PYTHON%" setup.py install
2+
if errorlevel 1 exit 1
3+
4+
:: Add more build steps here, if they are necessary.
5+
6+
:: See
7+
:: http://docs.continuum.io/conda/build.html
8+
:: for a list of environment variables that are set during the build process.

conda.recipe/build.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
$PYTHON setup.py install
4+
5+
# Add more build steps here, if they are necessary.
6+
7+
# See
8+
# http://docs.continuum.io/conda/build.html
9+
# for a list of environment variables that are set during the build process.

conda.recipe/meta.yaml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
package:
2+
name: pandas
3+
version: {{ environ.get('GIT_DESCRIBE_TAG', '').replace('.dev', 'dev') }}
4+
5+
build:
6+
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
7+
8+
source:
9+
git_url: ../
10+
11+
12+
requirements:
13+
build:
14+
- python
15+
- setuptools
16+
- ipython
17+
- numpy
18+
- scipy
19+
- matplotlib
20+
- mock
21+
- nose
22+
23+
run:
24+
- python
25+
- ipython
26+
- numpy
27+
- scipy
28+
- matplotlib
29+
30+
test:
31+
# Python imports
32+
imports:
33+
- skrf
34+
- skrf.calibration
35+
- skrf.data
36+
- skrf.io
37+
- skrf.media
38+
39+
# commands:
40+
# You can put test commands to be run here. Use this to test that the
41+
# entry points work.
42+
43+
44+
# You can also put a file called run_test.py in the recipe that will be run
45+
# at test time.
46+
47+
# requires:
48+
# Put any additional test requirements here. For example
49+
# - nose
50+
51+
about:
52+
home: http://www.scikit-rf.org
53+
license: new BSD
54+
summary: 'Object Oriented Microwave Engineering'
55+
56+
# See
57+
# http://docs.continuum.io/conda/build.html for
58+
# more information about meta.yaml

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
long_description=LONG_DESCRIPTION,
1717
author='Alex Arsenovic',
1818
author_email='[email protected]',
19-
url='http://scikit-rf.org',
19+
url='http://www.scikit-rf.org',
2020
packages=find_packages(),
2121
install_requires = [
2222
'ipython',

0 commit comments

Comments
 (0)