Updated `ftfy` requirement version depending on python version.
This commit is contained in:
parent
f364542949
commit
cd6da4db70
7
setup.py
7
setup.py
|
@ -37,16 +37,15 @@ setup(
|
|||
'python', 'dictionary', 'dictionaries', 'dict', 'benedict',
|
||||
'subclass', 'extended', 'keylist', 'keypath', 'utility', 'io',
|
||||
'data', 'file', 'url', 'read', 'write', 'parse',
|
||||
'base64', 'csv', 'json', 'query-string', 'toml', 'xml', 'yaml',
|
||||
'clean', 'clone', 'deepclone', 'deepupdate', 'dump',
|
||||
'filter', 'flatten', 'groupby', 'invert', 'merge',
|
||||
'move', 'nest', 'remove', 'rename', 'search', 'standardize',
|
||||
'subset', 'swap', 'traverse', 'unflatten', 'unique',
|
||||
],
|
||||
install_requires=[
|
||||
'ftfy==4.4.3;python_version<"3.4"',
|
||||
'ftfy==5.9;python_version<"3.6"',
|
||||
'ftfy;python_version>"2.7"',
|
||||
'ftfy == 4.4.3; python_version <= "2.7"',
|
||||
'ftfy == 5.9.0; python_version == "3.5"',
|
||||
'ftfy; python_version >= "3.6"',
|
||||
'mailchecker',
|
||||
'phonenumbers',
|
||||
'python-dateutil',
|
||||
|
|
Loading…
Reference in New Issue