diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-10-17 19:23:13 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-10-17 19:23:13 -0400 |
commit | 43dcea5dc04c351cab4b78b9d7adf7e351b4e9d8 (patch) | |
tree | 35710229e8e6d14e7429296d3a76b9e5a59d7072 | |
parent | 3b51cabe9c2a9b763bbd8d7f5fe1f8e28a3eb5e8 (diff) | |
download | astroconda-etc-43dcea5dc04c351cab4b78b9d7adf7e351b4e9d8.tar.gz |
Initial commit; add OOB packages
-rw-r--r-- | threading2/bld.bat | 3 | ||||
-rw-r--r-- | threading2/build.sh | 2 | ||||
-rw-r--r-- | threading2/meta.yaml | 23 |
3 files changed, 28 insertions, 0 deletions
diff --git a/threading2/bld.bat b/threading2/bld.bat new file mode 100644 index 0000000..b290566 --- /dev/null +++ b/threading2/bld.bat @@ -0,0 +1,3 @@ + +python setup.py install +if errorlevel 1 exit 1
\ No newline at end of file diff --git a/threading2/build.sh b/threading2/build.sh new file mode 100644 index 0000000..4b71885 --- /dev/null +++ b/threading2/build.sh @@ -0,0 +1,2 @@ + +python setup.py install || exit 1
\ No newline at end of file diff --git a/threading2/meta.yaml b/threading2/meta.yaml new file mode 100644 index 0000000..fc855ea --- /dev/null +++ b/threading2/meta.yaml @@ -0,0 +1,23 @@ +about: + home: https://pypi.python.org/packages/source/t/threading2 + license: BSD + summary: threading2 +build: + number: '0' +package: + name: threading2 + version: 0.2.1 +requirements: + build: + - setuptools + - python x.x + run: + - python x.x +source: + fn: threading2-0.2.1.tar.gz + md5: 4ffb227b9a0e1f3e2a42f69f92a47bae + url: + - https://pypi.python.org/packages/source/t/threading2/threading2-0.2.1.tar.gz +test: + imports: + - threading2 |