Skip to content

Commit 8c8b973

Browse files
committed
uses spaces in setup.py
1 parent 0aca598 commit 8c8b973

File tree

1 file changed

+39
-39
lines changed

1 file changed

+39
-39
lines changed

setup.py

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -5,43 +5,43 @@
55
from codecs import open
66

77
setup(
8-
name='email_validator',
9-
version='1.0.5',
10-
11-
description='A robust email syntax and deliverability validation library for Python 2.x/3.x.',
12-
long_description=open("README.rst", encoding='utf-8').read(),
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-
],
34-
35-
keywords="email address validator",
36-
37-
packages=find_packages(),
38-
install_requires=[
39-
"idna>=2.0.0",
40-
"dnspython>=1.15.0"],
41-
42-
entry_points={
43-
'console_scripts': [
44-
'email_validator=email_validator:main',
45-
],
46-
},
8+
name='email_validator',
9+
version='1.0.5',
10+
11+
description='A robust email syntax and deliverability validation library for Python 2.x/3.x.',
12+
long_description=open("README.rst", encoding='utf-8').read(),
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+
],
34+
35+
keywords="email address validator",
36+
37+
packages=find_packages(),
38+
install_requires=[
39+
"idna>=2.0.0",
40+
"dnspython>=1.15.0"],
41+
42+
entry_points={
43+
'console_scripts': [
44+
'email_validator=email_validator:main',
45+
],
46+
},
4747
)

0 commit comments

Comments
 (0)