Updated setup.py

This commit is contained in:
Ben Baert 2018-05-31 13:13:28 +02:00
parent c5064e8a18
commit 9f9fc94875
1 changed files with 13 additions and 12 deletions

View File

@ -1,14 +1,15 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
setup(name='validate_email', setup(
version = '1.3', name="pyemailval",
download_url = 'git@github.com:syrusakbary/validate_email.git', version="1.0",
py_modules = ('validate_email',), download_url="git@github.com:ben-baert/pyemailval.git",
author = 'Syrus Akbary', py_modules=("pyemailval",),
author_email = 'me@syrusakbary.com', author="Ben Baert",
description = 'validate_email verifies if an email address is valid and really exists.', author_email="ben_b@gmx.com",
long_description=open('README.rst').read(), description="pyemailval verifies if an email address really exists.",
keywords = 'email validation verification mx verify', long_description=open("README.rst").read(),
url = 'http://github.com/syrusakbary/validate_email', keywords="email validation verification mx verify",
license = 'LGPL', url="http://github.com/ben-baert/pyemailval",
) license="LGPL",
)