Skip to content

Commit cf1e6b7

Browse files
authored
Merge pull request #33 from samuelcolvin/fix-setup
2 parents 0aca598 + 7afe8ab commit cf1e6b7

File tree

2 files changed

+42
-40
lines changed

2 files changed

+42
-40
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ cache: pip
55

66
python:
77
- '2.7'
8+
- '3.4'
89
- '3.5'
910
- '3.6'
1011
- '3.7'

setup.py

Lines changed: 41 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,48 @@
11
# -*- coding: utf-8 -*-
22

3-
import sys
43
from setuptools import setup, find_packages
54
from codecs import open
65

76
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+
},
4748
)

0 commit comments

Comments
 (0)