Source: python-email-validator
Section: python
Priority: optional
Maintainer: Kali Developers <devel@kali.org>
Uploaders: Sophie Brun <sophie@offensive-security.com>
Build-Depends: debhelper-compat (= 12), dh-python, python3-all, python3-setuptools, python3-dnspython, python3-idna
Standards-Version: 4.4.0
Homepage: https://github.com/JoshData/python-email-validator
Vcs-Git: https://gitlab.com/kalilinux/packages/python-email-validator.git
Vcs-Browser: https://gitlab.com/kalilinux/packages/python-email-validator
Testsuite: autopkgtest-pkg-python

Package: python3-email-validator
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}
Description: robust email syntax and deliverability validation library (Python 3)
 This package contains a robust email address syntax and deliverability
 validation library.
 .
 This library validates that address are of the form x@y.com. This is the sort
 of validation you would want for a login form on a website.
 .
 Key features:
 .
   - Good for validating email addresses used for logins/identity.
   - Friendly error messages when validation fails (appropriate to show to
      end users).
   - (optionally) Checks deliverability: Does the domain name resolve?
   - Supports internationalized domain names and (optionally) internationalized
     local parts.
   - Normalizes email addresses (super important for internationalized
     addresses! see below).
 .
 The library is NOT for validation of the To: line in an email message (e.g. My
 Name <my@address.com>), which flanker is more appropriate for. And this library
 does NOT permit obsolete forms of email addresses, so if you need strict
 validation against the email specs exactly, use pyIsEmail.  .
 .
 This package installs the library for Python 3.
