diff options
-rw-r--r-- | appdirs/appdirs.ini | 40 | ||||
-rw-r--r-- | decorator/decorator.ini | 40 | ||||
-rw-r--r-- | pytools/pytools.ini | 48 |
3 files changed, 128 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 + diff --git a/decorator/decorator.ini b/decorator/decorator.ini new file mode 100644 index 0000000..607de4e --- /dev/null +++ b/decorator/decorator.ini @@ -0,0 +1,40 @@ +[package] +name : decorators +version : 4.0.9 + +[about] +home : https://github.com/micheles/decorator +license : BSD +summary : Better living through Python with decorators + +[source] +fn : ${package:name}-${package:version}.tar.gz +url : https://pypi.python.org/packages/source/d/${package:name}/${fn} +md5 : f12c5651ccd707e12a0abaa4f76cd69a + +[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 + 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 + |