summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorVal Neekman <val@neekware.com>2018-03-25 09:39:21 -0400
committerVal Neekman <val@neekware.com>2018-03-25 09:39:21 -0400
commit8e360aed732fb0c902e78885c4be89e4048a2d2d (patch)
tree51bb26eb4562a4e717330cb3e399576b3b435400 /setup.py
parent874fe140aa68ee1065e2170385f8c4ace5ac644a (diff)
downloadpython-slugify-8e360aed732fb0c902e78885c4be89e4048a2d2d.tar.gz
support for text-unidecode
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index dcf21df..af831a8 100755
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ url = 'https://github.com/un33k/python-slugify'
author = 'Val Neekman'
author_email = 'info@neekware.com'
license = 'MIT'
-if "WITH_TEXTUNIDECODE" in os.environ:
+if "SLUGIFY_USES_TEXT_UNIDECODE" in os.environ:
install_requires = ['text-unidecode>=1.2']
else:
install_requires = ['Unidecode>=0.04.16']