-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add py39 and setup_py to setup_cfg (#57)
- Loading branch information
Showing
3 changed files
with
40 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ python: | |
- '3.6' | ||
- '3.7' | ||
- '3.8' | ||
- '3.9' | ||
|
||
install: | ||
- make install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,2 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from setuptools import setup, find_packages | ||
from codecs import open | ||
|
||
setup( | ||
name='email-validator', | ||
version='1.1.2', | ||
|
||
description='A robust email syntax and deliverability validation library for Python 2.x/3.x.', | ||
long_description=open("README.md", encoding='utf-8').read(), | ||
long_description_content_type="text/markdown", | ||
url='https://github.com/JoshData/python-email-validator', | ||
|
||
author=u'Joshua Tauberer', | ||
author_email=u'jt@occams.info', | ||
license='CC0 (copyright waived)', | ||
|
||
# See https://pypi.org/pypi?%3Aaction=list_classifiers | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication', | ||
|
||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
|
||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
], | ||
|
||
keywords="email address validator", | ||
|
||
packages=find_packages(), | ||
install_requires=[ | ||
"idna>=2.0.0", | ||
"dnspython>=1.15.0"], | ||
|
||
entry_points={ | ||
'console_scripts': [ | ||
'email_validator=email_validator:main', | ||
], | ||
}, | ||
) | ||
from setuptools import setup | ||
setup() |