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 /appdirs | |
parent | a3586031e19d4877d147d6b0d2c04b51b2099f04 (diff) | |
download | cbc-recipes-091fe4ab2a22a27857ecb81115e16ffd48195f92.tar.gz |
Initial commit
Diffstat (limited to 'appdirs')
-rw-r--r-- | appdirs/appdirs.ini | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/appdirs/appdirs.ini b/appdirs/appdirs.ini new file mode 100644 index 0000000..da62f0b --- /dev/null +++ b/appdirs/appdirs.ini @@ -0,0 +1,40 @@ +[package] +name : appdirs +version : 1.4.0 + +[about] +home : http://github.com/ActiveState/appdirs +license : MIT +summary : A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir". + +[source] +fn : ${package:name}-${package:version}.tar.gz +url : https://pypi.python.org/packages/source/a/${package:name}/${fn} +md5 : 1d17b4c9694ab84794e228f28dc3275b + +[build] +number : 0 + +[requirements] +build : + setuptools + python + +run : + python + +[test] +imports : + # none + +commands : + # none + +[cbc_build] +linux : + python setup.py install || exit 1 + +windows : + python setup.py install + if errorlevel 1 exit 1 + |