py3-validate-email/setup.py

15 lines
576 B
Python
Raw Normal View History

2012-04-22 22:13:19 +02:00
from setuptools import setup, find_packages
2012-04-07 23:05:57 +02:00
setup(name='validate_email',
version = '1.3',
2012-04-07 23:05:57 +02:00
download_url = 'git@github.com:syrusakbary/validate_email.git',
2012-04-22 22:13:19 +02:00
py_modules = ('validate_email',),
2012-04-07 23:05:57 +02:00
author = 'Syrus Akbary',
author_email = 'me@syrusakbary.com',
2015-03-23 06:05:19 +01:00
description = 'validate_email verifies if an email address is valid and really exists.',
2012-04-07 23:05:57 +02:00
long_description=open('README.rst').read(),
keywords = 'email validation verification mx verify',
url = 'http://github.com/syrusakbary/validate_email',
license = 'LGPL',
2013-07-30 22:34:36 +02:00
)