Updated setup.py
This commit is contained in:
parent
c5064e8a18
commit
9f9fc94875
1 changed files with 13 additions and 12 deletions
25
setup.py
25
setup.py
|
@ -1,14 +1,15 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
setup(name='validate_email',
|
||||
version = '1.3',
|
||||
download_url = 'git@github.com:syrusakbary/validate_email.git',
|
||||
py_modules = ('validate_email',),
|
||||
author = 'Syrus Akbary',
|
||||
author_email = 'me@syrusakbary.com',
|
||||
description = 'validate_email verifies if an email address is valid and really exists.',
|
||||
long_description=open('README.rst').read(),
|
||||
keywords = 'email validation verification mx verify',
|
||||
url = 'http://github.com/syrusakbary/validate_email',
|
||||
license = 'LGPL',
|
||||
)
|
||||
setup(
|
||||
name="pyemailval",
|
||||
version="1.0",
|
||||
download_url="git@github.com:ben-baert/pyemailval.git",
|
||||
py_modules=("pyemailval",),
|
||||
author="Ben Baert",
|
||||
author_email="ben_b@gmx.com",
|
||||
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/ben-baert/pyemailval",
|
||||
license="LGPL",
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue