From ce2ca7d1fa504b0d33a9cade8eb4c8fcffac8c02 Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Sun, 22 Apr 2012 22:13:19 +0200 Subject: [PATCH] Fixed module bug --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b536268..3ffe8d4 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,9 @@ -from setuptools import setup,find_packages +from setuptools import setup, find_packages setup(name='validate_email', version = '1.0', download_url = 'git@github.com:syrusakbary/validate_email.git', - py_modules = 'validate_email', + py_modules = ('validate_email',), author = 'Syrus Akbary', author_email = 'me@syrusakbary.com', description = 'Validate_email verify if an email address is valid and really exists.',