From 39866aa66e8ae7999348f35d75616b76a9d453ba Mon Sep 17 00:00:00 2001 From: Yuto Yamaguchi Date: Sun, 28 Jan 2018 22:12:28 +0900 Subject: Implement a module for node classification (#2848) * Implement a module for node classification * Fix tests * Put helper functions inside the public function. * Rename modules * Fix examples * Try imports * Add a doc for node classification * Add one test case * Add skip annotation. * Follow PEP8 * Follow PEP8 in test code * Fix doctest violation --- setup.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 02ee9cd9..dfe9cf52 100644 --- a/setup.py +++ b/setup.py @@ -34,6 +34,7 @@ packages = ["networkx", "networkx.algorithms", "networkx.algorithms.assortativity", "networkx.algorithms.bipartite", + "networkx.algorithms.node_classification", "networkx.algorithms.centrality", "networkx.algorithms.community", "networkx.algorithms.components", @@ -85,6 +86,7 @@ package_data = { 'networkx.algorithms': ['tests/*.py'], 'networkx.algorithms.assortativity': ['tests/*.py'], 'networkx.algorithms.bipartite': ['tests/*.py'], + 'networkx.algorithms.node_classification': ['tests/*.py'], 'networkx.algorithms.centrality': ['tests/*.py'], 'networkx.algorithms.community': ['tests/*.py'], 'networkx.algorithms.components': ['tests/*.py'], -- cgit v1.2.1