Skip to content

Commit ad53fb4

Browse files
authored
add py39 and setup_py to setup_cfg (#57)
1 parent df5dbf9 commit ad53fb4

File tree

3 files changed

+40
-52
lines changed

3 files changed

+40
-52
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ python:
1010
- '3.6'
1111
- '3.7'
1212
- '3.8'
13+
- '3.9'
1314

1415
install:
1516
- make install

setup.cfg

Lines changed: 37 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,42 @@
1-
[bdist_wheel]
2-
universal = 1
3-
41
[metadata]
2+
name = email_validator
3+
version = 1.1.2
4+
description = A robust email syntax and deliverability validation library for Python 2.x/3.x.
5+
long_description = file: README.md
6+
long_description_content_type = text/markdown
7+
url = https://github.com/JoshData/python-email-validator
8+
author = Joshua Tauberer
9+
author_email = jt@occams.info
10+
license = CC0 (copyright waived)
511
license_file = LICENSE
12+
classifiers =
13+
Development Status :: 5 - Production/Stable
14+
Intended Audience :: Developers
15+
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
16+
Programming Language :: Python :: 2
17+
Programming Language :: Python :: 2.7
18+
Programming Language :: Python :: 3
19+
Programming Language :: Python :: 3.5
20+
Programming Language :: Python :: 3.6
21+
Programming Language :: Python :: 3.7
22+
Programming Language :: Python :: 3.8
23+
Programming Language :: Python :: 3.9
24+
Topic :: Software Development :: Libraries :: Python Modules
25+
keywords = email address validator
26+
27+
[options]
28+
packages = find:
29+
install_requires =
30+
dnspython>=1.15.0
31+
idna>=2.0.0
32+
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
33+
34+
[options.entry_points]
35+
console_scripts =
36+
email_validator=email_validator:main
37+
38+
[bdist_wheel]
39+
universal = 1
640

741
[flake8]
842
max-line-length = 120

setup.py

Lines changed: 2 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,2 @@
1-
# -*- coding: utf-8 -*-
2-
3-
from setuptools import setup, find_packages
4-
from codecs import open
5-
6-
setup(
7-
name='email-validator',
8-
version='1.1.2',
9-
10-
description='A robust email syntax and deliverability validation library for Python 2.x/3.x.',
11-
long_description=open("README.md", encoding='utf-8').read(),
12-
long_description_content_type="text/markdown",
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-
'Programming Language :: Python :: 3.7',
34-
'Programming Language :: Python :: 3.8',
35-
],
36-
37-
keywords="email address validator",
38-
39-
packages=find_packages(),
40-
install_requires=[
41-
"idna>=2.0.0",
42-
"dnspython>=1.15.0"],
43-
44-
entry_points={
45-
'console_scripts': [
46-
'email_validator=email_validator:main',
47-
],
48-
},
49-
)
1+
from setuptools import setup
2+
setup()

0 commit comments

Comments
 (0)