Skip to content

Commit 81f9aab

Browse files
committed
Added components for a conda package.
1 parent aa786e2 commit 81f9aab

File tree

4 files changed

+38
-6
lines changed

4 files changed

+38
-6
lines changed

conda/build.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
set -x
4+
set -e
5+
6+
exit

conda/meta.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package:
2+
name: revassign
3+
version: "0.1.0"
4+
5+
source:
6+
git_rev: master
7+
git_url: https://github.com/nckz/RevAssign.git
8+
9+
requirements:
10+
build:
11+
- python >=2.7,<3
12+
- pyqt >=4,<5
13+
- xlrd >=0.9
14+
- xlwt >=1
15+
run:
16+
- python >=2.7,<3
17+
- pyqt >=4,<5
18+
- xlrd >=0.9
19+
- xlwt >=1
20+
21+
build:
22+
number: 1
23+
24+
about:
25+
home: http://gpilab.com
26+
license: BSD
27+
summary: "RevAssign - The ISMRM-AMPC reviewer assignment helper software."

conda/package.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
CHANNEL=nckz
3+
OUTPUT=`conda build ./ --output`
4+
conda build ./ -c $CHANNEL
5+
anaconda upload -c $CHANNEL $OUTPUT -f

revassign.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)