diff options
author | Joe Hunkeler <jhunk@stsci.edu> | 2016-02-16 18:41:04 -0500 |
---|---|---|
committer | Joe Hunkeler <jhunk@stsci.edu> | 2016-02-16 18:41:04 -0500 |
commit | 091fe4ab2a22a27857ecb81115e16ffd48195f92 (patch) | |
tree | ed044a31846d980c9b7deed532bb4f4d633fdc10 /pytools/pytools.ini | |
parent | a3586031e19d4877d147d6b0d2c04b51b2099f04 (diff) | |
download | cbc-recipes-091fe4ab2a22a27857ecb81115e16ffd48195f92.tar.gz |
Initial commit
Diffstat (limited to 'pytools/pytools.ini')
-rw-r--r-- | pytools/pytools.ini | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/pytools/pytools.ini b/pytools/pytools.ini new file mode 100644 index 0000000..0fc29c8 --- /dev/null +++ b/pytools/pytools.ini @@ -0,0 +1,48 @@ +[package] +name : pytools +version : 2016.1 + +[about] +home : https://pypi.python.org/${package:name} +license : MIT +summary : A collection of tools for Python + +[source] +fn : ${package:name}-${package:version}.tar.gz +url : https://pypi.python.org/packages/source/p/${package:name}/${fn} +md5 : d8af5c5bea24aa4a21881684dcf03b06 + +[build] +number : 0 + +[requirements] +build : + decorator >=3.2.0 + appdirs >=1.4.0 + six >=1.8.0 + numpy >=1.6.0 + setuptools + python + +run : + decorator >=3.2.0 + appdirs >=1.4.0 + six >=1.8.0 + numpy >=1.6.0 + python + +[test] +imports : + pytools + +commands : + # none + +[cbc_build] +linux : + python setup.py install || exit 1 + +windows : + python setup.py install + if errorlevel 1 exit 1 + |