From e4caf4a2acbb18875b1064246554e4105449b5a3 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Wed, 23 Mar 2016 17:00:53 -0400 Subject: Initial commit --- pyneb/bld.bat | 3 +++ pyneb/build.sh | 2 ++ pyneb/meta.yaml | 30 ++++++++++++++++++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 pyneb/bld.bat create mode 100644 pyneb/build.sh create mode 100644 pyneb/meta.yaml (limited to 'pyneb') diff --git a/pyneb/bld.bat b/pyneb/bld.bat new file mode 100644 index 0000000..b290566 --- /dev/null +++ b/pyneb/bld.bat @@ -0,0 +1,3 @@ + +python setup.py install +if errorlevel 1 exit 1 \ No newline at end of file diff --git a/pyneb/build.sh b/pyneb/build.sh new file mode 100644 index 0000000..4b71885 --- /dev/null +++ b/pyneb/build.sh @@ -0,0 +1,2 @@ + +python setup.py install || exit 1 \ No newline at end of file diff --git a/pyneb/meta.yaml b/pyneb/meta.yaml new file mode 100644 index 0000000..cb7f823 --- /dev/null +++ b/pyneb/meta.yaml @@ -0,0 +1,30 @@ +about: + home: http://www.iac.es/proyecto/PyNeb/ + license: Unknown + summary: A modern python tool to compute emission line emissivities +build: + number: '0' +package: + name: pyneb + version: 1.0.14 +requirements: + build: + - astropy + - matplotlib + - numpy >=1.5.1 + - scipy + - setuptools + - python x.x + run: + - astropy + - matplotlib + - numpy >=1.5.1 + - scipy + - python x.x +source: + fn: pyneb-1.0.14.tar.gz + url: + - https://pypi.python.org/packages/source/P/pyneb +test: + imports: + - pyneb -- cgit