Skip to content

Commit

Permalink
Softened allset requirement. Fixed naming issue for PyPi.
Browse files Browse the repository at this point in the history
  • Loading branch information
MSeal committed Apr 2, 2014
1 parent e775c04 commit 15be3e7
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[metadata]
name = pydatawrap
name = agglomcluster
description-file = README.md
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def readMD(fname):
author="Matthew Seal",
author_email="[email protected]",
description="Performs greedy agglomerative clustering on network-x graphs",
packages=['agglomod'],
packages=['agglomcluster'],
long_description=readMD('README.md'),
install_requires=required,
license='LGPL 2.1',
Expand Down
4 changes: 2 additions & 2 deletions tests/agglomod_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
import unittest
import os
import networkx as nx
from agglomod import agglomod
from agglomcluster import NewmanGreedy

class HACTest(unittest.TestCase):
def setUp(self):
self.graph = nx.karate_club_graph();
self.newman = agglomod.NewmanGreedy(self.graph)
self.newman = NewmanGreedy(self.graph)

def test_quality_history(self):
self.assertListEqual(self.newman.quality_history,
Expand Down

0 comments on commit 15be3e7

Please sign in to comment.