From 091fe4ab2a22a27857ecb81115e16ffd48195f92 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Tue, 16 Feb 2016 18:41:04 -0500 Subject: Initial commit --- pytools/pytools.ini | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 pytools/pytools.ini (limited to 'pytools/pytools.ini') 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 + -- cgit