diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 53 | ||||
-rw-r--r-- | debian/copyright | 68 | ||||
-rw-r--r-- | debian/python-sklearn-pandas.docs | 1 | ||||
-rw-r--r-- | debian/python3-sklearn-pandas.docs | 1 | ||||
-rwxr-xr-x | debian/rules | 11 | ||||
-rw-r--r-- | debian/source/format | 1 | ||||
-rw-r--r-- | debian/watch | 4 |
9 files changed, 146 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..16f552d --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +sklearn-pandas (0.0.12-1) unstable; urgency=low + + * Closes: #805816 + * source package automatically created by stdeb 0.8.5 + + -- Christopher Baines <mail@cbaines.net> Sun, 22 Nov 2015 16:42:43 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..4741d69 --- /dev/null +++ b/debian/control @@ -0,0 +1,53 @@ +Source: sklearn-pandas +Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> +Uploaders: Christopher Baines <mail@cbaines.net> +Section: python +Priority: optional +Build-Depends: debhelper (>= 9), + dh-python, + python-all, + python-setuptools, + python-mock, + python-pytest, + python-numpy, + python-pandas, + python-sklearn, + python3-all, + python3-setuptools, + python3-mock, + python3-pytest, + python3-numpy, + python3-pandas, + python3-sklearn, +Standards-Version: 3.9.6 +Homepage: https://github.com/paulgb/sklearn-pandas + +Package: python-sklearn-pandas +Architecture: all +Depends: ${misc:Depends}, + ${python:Depends}, +Enhances: python3-pandas, + python3-sklearn, +Description: Pandas integration with sklearn + sklearn-pandas provides a bridge between scikit-learn's machine learning + methods and pandas data frames. + . + In particular, it provides: + - a way to map DataFrame columns to transformations, which are later + recombined into features + - a way to cross-validate a pipeline that takes a pandas DataFrame as input. + +Package: python3-sklearn-pandas +Architecture: all +Depends: ${misc:Depends}, + ${python3:Depends}, +Enhances: python3-pandas, + python3-sklearn, +Description: Pandas integration with sklearn + sklearn-pandas provides a bridge between scikit-learn's machine learning + methods and pandas data frames. + . + In particular, it provides: + - a way to map DataFrame columns to transformations, which are later + recombined into features + - a way to cross-validate a pipeline that takes a pandas DataFrame as input. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..3f76a65 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,68 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: sklearn-pandas +Source: https://pypi.python.org/packages/source/s/sklearn-pandas/sklearn-pandas-0.0.12.tar.gz#md5=d05b53c1f105dd0f1000b4cf22a55006 + +Files: * +Copyright: Copyright 2014-2015 Paul Butler <paulgb@gmail.com> + Copyright 2015 Cal Paterson <cal@calpaterson.com> + Copyright 2015 Israel Saeta Pérez <israel.saeta@dukebody.com> +License: Zlib + +Files: sklearn_pandas/__init__.py +Copyright: Copyright 2013 Ben Hammer <ben@benhammer.com> + Copyright 2014-2015 Paul Butler <paulgb@gmail.com> + Copyright 2015 Cal Paterson <cal@calpaterson.com> + Copyright 2015 Israel Saeta Pérez <israel.saeta@dukebody.com> +License: Zlib and BSD-2-clause + The source code of DataFrameMapper is derived from code originally written by + Ben Hamner and released under the following license. + . + Copyright (c) 2013, Ben Hamner + Author: Ben Hamner (ben@benhamner.com) + All rights reserved. + . + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + . + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + . + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Files: debian/* +Copyright: Copyright 2015 Christopher Baines <mail@cbaines.net> +License: Zlib + +License: Zlib + sklearn-pandas -- bridge code for cross-validation of pandas data frames + with sklearn + . + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + . + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + . + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + . + Paul Butler <paulgb@gmail.com> diff --git a/debian/python-sklearn-pandas.docs b/debian/python-sklearn-pandas.docs new file mode 100644 index 0000000..a1320b1 --- /dev/null +++ b/debian/python-sklearn-pandas.docs @@ -0,0 +1 @@ +README.rst diff --git a/debian/python3-sklearn-pandas.docs b/debian/python3-sklearn-pandas.docs new file mode 100644 index 0000000..a1320b1 --- /dev/null +++ b/debian/python3-sklearn-pandas.docs @@ -0,0 +1 @@ +README.rst diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..28b0b0d --- /dev/null +++ b/debian/rules @@ -0,0 +1,11 @@ +#!/usr/bin/make -f + +export PYBUILD_TEST_ARGS_python2=; cd {dir}; python{version} -m doctest -v README.rst +export PYBUILD_TEST_ARGS_python3=; cd {dir}; python{version} -m doctest -v README.rst + +# This file was automatically generated by stdeb 0.8.5 at +# Sun, 22 Nov 2015 16:42:43 +0000 +export PYBUILD_NAME=sklearn-pandas +%: + dh $@ --with python2,python3 --buildsystem=pybuild + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..bb47076 --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +# please also check http://pypi.debian.net/sklearn-pandas/watch +version=3 +opts=uversionmangle=s/(rc|a|b|c)/~$1/ \ +http://pypi.debian.net/sklearn-pandas/sklearn-pandas-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file |