Skip to content

Commit 6b683b7

Browse files
committed
ENH: added conda recipe.
1 parent f5806d5 commit 6b683b7

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

conda/meta.yaml

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
package:
2+
name: interpolation
3+
version: "0.1.6"
4+
5+
source:
6+
# path: ../
7+
git_url: https://github.com/econforge/interpolation.py
8+
git_tag: v0.1.6
9+
10+
build:
11+
script: python setup.py install --single-version-externally-managed --record=record.txt
12+
noarch_python: True
13+
preserve_egg_dir: True
14+
15+
# If this is a new build for the same version, increment the build
16+
# number. If you do not include this key, it defaults to 0.
17+
# number: 1
18+
19+
requirements:
20+
build:
21+
- python
22+
- setuptools
23+
- numba
24+
- numpy
25+
- pandas
26+
- cython
27+
- scipy
28+
- pip
29+
30+
run:
31+
- python
32+
- numba
33+
- numpy
34+
- pandas
35+
- cython
36+
- scipy
37+
38+
test:
39+
# Python imports
40+
imports:
41+
- interpolation
42+
- interpolation.smolyak
43+
- interpolation.smolyak.tests
44+
- interpolation.splines
45+
- interpolation.splines.tests
46+
47+
# commands:
48+
# You can put test commands to be run here. Use this to test that the
49+
# entry points work.
50+
51+
52+
# You can also put a file called run_test.py in the recipe that will be run
53+
# at test time.
54+
55+
# requires:
56+
# Put any additional test requirements here. For example
57+
# - nose
58+
59+
about:
60+
home: https://github.com/econforge/interpolation.py
61+
license: BSD-2
62+
summary: 'Interpolation in Python'
63+
64+
# See
65+
# http://docs.continuum.io/conda/build.html for
66+
# more information about meta.yaml

0 commit comments

Comments
 (0)