Skip to content

Commit cc9b001

Browse files
committed
Package name should have a dash not an underscore
1 parent 9b122ad commit cc9b001

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
email\_validator
2-
================
1+
email-validator: Validate Email Addresses
2+
=========================================
33

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

7-
This library validates that a string is of the form `x@y.com`. This is
7+
This library validates that a string is of the form `name@example.com`. This is
88
the sort of validation you would want for an email-based login form on
99
a website.
1010

1111
Key features:
1212

13-
* Good for validating email addresses used for logins/identity.
14-
* Friendly error messages when validation fails (appropriate to show
13+
* Checks that an email address has the correct syntax --- good for
14+
login forms or other uses related to identifying users.
15+
* Gives friendly error messages when validation fails (appropriate to show
1516
to end users).
1617
* (optionally) Checks deliverability: Does the domain name resolve?
1718
* Supports internationalized domain names and (optionally)
@@ -37,7 +38,7 @@ Installation
3738
This package [is on PyPI](https://pypi.org/project/email-validator/), so:
3839

3940
```sh
40-
pip install email_validator
41+
pip install email-validator
4142
```
4243

4344
`pip3` also works.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from codecs import open
55

66
setup(
7-
name='email_validator',
7+
name='email-validator',
88
version='1.1.1',
99

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

0 commit comments

Comments
 (0)