1# -*- coding: utf-8 -*-
2
3from setuptools import setup, find_packages
4from codecs import open
5
6setup(
7    name='email_validator',
8    version='1.1.1',
9
10    description='A robust email syntax and deliverability validation library for Python 2.x/3.x.',
11    long_description=open("README.md", encoding='utf-8').read(),
12    long_description_content_type="text/markdown",
13    url='https://github.com/JoshData/python-email-validator',
14
15    author=u'Joshua Tauberer',
16    author_email=u'jt@occams.info',
17    license='CC0 (copyright waived)',
18
19    # See https://pypi.org/pypi?%3Aaction=list_classifiers
20    classifiers=[
21        'Development Status :: 5 - Production/Stable',
22        'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
23
24        'Intended Audience :: Developers',
25        'Topic :: Software Development :: Libraries :: Python Modules',
26
27        'Programming Language :: Python :: 2',
28        'Programming Language :: Python :: 2.7',
29        'Programming Language :: Python :: 3',
30        'Programming Language :: Python :: 3.4',
31        'Programming Language :: Python :: 3.5',
32        'Programming Language :: Python :: 3.6',
33        'Programming Language :: Python :: 3.7',
34        'Programming Language :: Python :: 3.8',
35    ],
36
37    keywords="email address validator",
38
39    packages=find_packages(),
40    install_requires=[
41        "idna>=2.0.0",
42        "dnspython>=1.15.0"],
43
44    entry_points={
45        'console_scripts': [
46            'email_validator=email_validator:main',
47        ],
48    },
49)
50