Skip to content

Commit

Permalink
Package name should have a dash not an underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshData committed Jul 16, 2020
1 parent 9b122ad commit cc9b001
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
email\_validator
================
email-validator: Validate Email Addresses
=========================================

A robust email address syntax and deliverability validation library for
Python 2.7/3.4+ by [Joshua Tauberer](https://razor.occams.info).
Python 2.7/3.4+ by [Joshua Tauberer](https://joshdata.me).

This library validates that a string is of the form `x@y.com`. This is
This library validates that a string is of the form `name@example.com`. This is
the sort of validation you would want for an email-based 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
* Checks that an email address has the correct syntax --- good for
login forms or other uses related to identifying users.
* Gives 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)
Expand All @@ -37,7 +38,7 @@ Installation
This package [is on PyPI](https://pypi.org/project/email-validator/), so:

```sh
pip install email_validator
pip install email-validator
```

`pip3` also works.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from codecs import open

setup(
name='email_validator',
name='email-validator',
version='1.1.1',

description='A robust email syntax and deliverability validation library for Python 2.x/3.x.',
Expand Down

0 comments on commit cc9b001

Please sign in to comment.