diff options
author | Eugene <gish.ee18@gmail.com> | 2020-08-17 14:44:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-17 07:44:23 -0400 |
commit | 0b88cb2273b564a4193ac11813347484fc1cec7c (patch) | |
tree | 3cb0b567aa4a792acd17ab25d1bd9434a9e8655d /setup.py | |
parent | a571ad475d90e64e63286245dca19f4f8cfdcbd6 (diff) | |
download | py-bcrypt-git-0b88cb2273b564a4193ac11813347484fc1cec7c.tar.gz |
Drop six dependency (#225)
* Drop six dependency
* Resolve formatting error
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -8,7 +8,6 @@ from setuptools.command.test import test CFFI_DEPENDENCY = "cffi>=1.1" -SIX_DEPENDENCY = "six>=1.4.1" CFFI_MODULES = [ @@ -54,7 +53,7 @@ setup( author_email=__about__["__email__"], python_requires=">=3.6", setup_requires=[CFFI_DEPENDENCY], - install_requires=[CFFI_DEPENDENCY, SIX_DEPENDENCY], + install_requires=[CFFI_DEPENDENCY], extras_require={"tests": ["pytest>=3.2.1,!=3.3.0"], "typecheck": ["mypy"]}, tests_require=["pytest>=3.2.1,!=3.3.0"], package_dir={"": "src"}, |