[Python-modules-commits] [python-cluster] branch master updated (9f502f2 -> 2d04d66)

Luciano Bello luciano at moszumanska.debian.org
Sun Apr 24 11:06:01 UTC 2016


This is an automated email from the git hooks/post-receive script.

luciano pushed a change to branch master
in repository python-cluster.

      from  9f502f2   Fixed VCS URL (https)
       new  2e12aa6   Import python-cluster_1.3.3.orig.tar.gz
       new  47af60d   record new upstream branch created by importing python-cluster_1.3.3.orig.tar.gz and merge it
       new  accdba6   python-cluster
       new  4edca95   Import python-cluster_1.3.3.orig.tar.gz
       new  2d04d66   record new upstream branch created by importing python-cluster_1.3.3.orig.tar.gz and merge it

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                  |   8 +
 AUTHORS                                     |   2 +
 CHANGELOG                                   |  10 +
 INSTALL                                     |  27 +
 MANIFEST.in                                 |   5 +-
 PKG-INFO                                    |  53 --
 README => README.rst                        |  29 +-
 cluster.py                                  | 739 ----------------------------
 cluster/__init__.py                         |  25 +
 cluster/cluster.py                          | 162 ++++++
 cluster/linkage.py                          | 100 ++++
 cluster/matrix.py                           | 171 +++++++
 cluster/method/__init__.py                  |  17 +
 cluster/method/base.py                      |  69 +++
 cluster/method/hierarchical.py              | 208 ++++++++
 cluster/method/kmeans.py                    | 168 +++++++
 cluster/test/test_hierarchical.py           | 249 ++++++++++
 cluster/test/test_kmeans.py                 | 141 ++++++
 cluster/test/test_linkage.py                |  31 ++
 cluster/test/test_numpy.py                  |  36 ++
 cluster/util.py                             | 132 +++++
 cluster/version.txt                         |   1 +
 clusterTests.py                             | 190 -------
 debian/.git-dpm                             |  14 +-
 debian/changelog                            |   9 +-
 debian/control                              |   2 +-
 debian/watch                                |   3 +-
 docs/Makefile                               | 177 +++++++
 docs/apidoc/cluster.matrix.rst              |   7 +
 docs/apidoc/cluster.method.base.rst         |   7 +
 docs/apidoc/cluster.method.hierarchical.rst |   7 +
 docs/apidoc/cluster.method.kmeans.rst       |   7 +
 docs/apidoc/cluster.rst                     |   7 +
 docs/apidoc/cluster.util.rst                |   7 +
 docs/changelog.rst                          |  13 +
 docs/conf.py                                | 260 ++++++++++
 docs/index.rst                              | 112 +++++
 fabfile.py                                  |  10 +
 makedist.sh                                 |   8 +
 pytest.ini                                  |   2 +
 setup.cfg                                   |   4 +-
 setup.py                                    |  50 +-
 42 files changed, 2259 insertions(+), 1020 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 AUTHORS
 create mode 100644 INSTALL
 delete mode 100644 PKG-INFO
 rename README => README.rst (64%)
 delete mode 100644 cluster.py
 create mode 100644 cluster/__init__.py
 create mode 100644 cluster/cluster.py
 create mode 100644 cluster/linkage.py
 create mode 100644 cluster/matrix.py
 create mode 100644 cluster/method/__init__.py
 create mode 100644 cluster/method/base.py
 create mode 100644 cluster/method/hierarchical.py
 create mode 100644 cluster/method/kmeans.py
 create mode 100644 cluster/test/test_hierarchical.py
 create mode 100644 cluster/test/test_kmeans.py
 create mode 100644 cluster/test/test_linkage.py
 create mode 100644 cluster/test/test_numpy.py
 create mode 100644 cluster/util.py
 create mode 100644 cluster/version.txt
 delete mode 100644 clusterTests.py
 create mode 100644 docs/Makefile
 create mode 100644 docs/apidoc/cluster.matrix.rst
 create mode 100644 docs/apidoc/cluster.method.base.rst
 create mode 100644 docs/apidoc/cluster.method.hierarchical.rst
 create mode 100644 docs/apidoc/cluster.method.kmeans.rst
 create mode 100644 docs/apidoc/cluster.rst
 create mode 100644 docs/apidoc/cluster.util.rst
 create mode 100644 docs/changelog.rst
 create mode 100644 docs/conf.py
 create mode 100644 docs/index.rst
 create mode 100644 fabfile.py
 create mode 100755 makedist.sh
 create mode 100644 pytest.ini

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-cluster.git



More information about the Python-modules-commits mailing list