summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorEugene <gish.ee18@gmail.com>2020-08-17 14:44:23 +0300
committerGitHub <noreply@github.com>2020-08-17 07:44:23 -0400
commit0b88cb2273b564a4193ac11813347484fc1cec7c (patch)
tree3cb0b567aa4a792acd17ab25d1bd9434a9e8655d /setup.py
parenta571ad475d90e64e63286245dca19f4f8cfdcbd6 (diff)
downloadpy-bcrypt-git-0b88cb2273b564a4193ac11813347484fc1cec7c.tar.gz
Drop six dependency (#225)
* Drop six dependency * Resolve formatting error
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index c12fcc9..d521470 100644
--- a/setup.py
+++ b/setup.py
@@ -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"},