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