diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-08-12 12:21:13 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-08-12 12:21:13 +0200 |
commit | ac2ea9627acbac7a73dba4fcd0aa828ec2f4be90 (patch) | |
tree | fd856efbf2e50b5e11b37fd598e160c952751817 | |
parent | f7900ec9fd5dac34fae7aa50bff766f30a534eba (diff) | |
download | fuzzycat-ac2ea9627acbac7a73dba4fcd0aa828ec2f4be90.tar.gz fuzzycat-ac2ea9627acbac7a73dba4fcd0aa828ec2f4be90.zip |
add deps: ftfy, unidecode, ipython
-rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -24,7 +24,9 @@ with open("README.md", "r") as fh: zip_safe=False, entry_points={"console_scripts": ["fuzzycat=fuzzycat.main:main",],}, install_requires=[ + "ftfy", "fatcat-openapi-client", + "unidecode", ], - extras_require={"dev": ["yapf", "twine", "isort", "pytest", "pytest-cov"],}, + extras_require={"dev": ["yapf", "twine", "isort", "pytest", "pytest-cov", "ipython"],}, ) |