From: W. Trevor King Date: Tue, 27 Sep 2011 19:40:40 +0000 (-0400) Subject: Update setup.py to reflect the fact that we're no longer a single module. X-Git-Tag: v0.4~55 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ebec83484a2899af7cc37b317983bbe863537350;p=pyafm.git Update setup.py to reflect the fact that we're no longer a single module. --- diff --git a/setup.py b/setup.py index 9b80e1e..f2e006e 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup(name=package_name, description=__doc__, long_description=open('README', 'r').read(), classifiers=filter(None, classifiers.split('\n')), - py_modules=['pyafm'], + packages=['pyafm'], provides=['pyafm (%s)' % __version__], requires=['pypiezo (>= 0.4)'], )