py3-validate-email/setup.py

17 lines
556 B
Python

from setuptools import setup, find_packages
setup(
name='pyemailval',
version='0.6',
py_modules=('pyemailval',),
install_requires=['dnspython', 'nose'],
author='Ben Baert',
author_email='laszlo@karolyi.hu',
description='pyemailval verifies if an email address really exists.',
long_description=open('README.rst').read(),
keywords='email validation verification mx verify',
url='http://github.com/karolyi/pyemailval',
download_url='http://github.com/karolyi/pyemailval/archive/0.1.tar.gz',
license='LGPL',
)