[Python-modules-commits] [python-cluster] branch upstream updated (372fa2a -> 4edca95)

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


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

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

      from  372fa2a   Imported Upstream version 1.1.1b3
       new  2e12aa6   Import python-cluster_1.3.3.orig.tar.gz
       new  4edca95   Import python-cluster_1.3.3.orig.tar.gz

The 2 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 -------
 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 +-
 38 files changed, 2242 insertions(+), 1009 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