diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-08-12 12:04:45 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-08-12 12:04:45 +0200 |
commit | ecb1c789d25b8665255f3ed932f30530f1219346 (patch) | |
tree | 3a1a2e6ec98fd9aec6e35f30afc313fd72d6601d | |
parent | b863f93602b26b352bb8dd9a4c280944098f069a (diff) | |
download | fuzzycat-ecb1c789d25b8665255f3ed932f30530f1219346.tar.gz fuzzycat-ecb1c789d25b8665255f3ed932f30530f1219346.zip |
setup: require fatcat-openapi-client
-rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -23,6 +23,8 @@ with open("README.md", "r") as fh: python_requires=">=3.6", zip_safe=False, entry_points={"console_scripts": ["fuzzycat=fuzzycat.main:main",],}, - install_requires=[], + install_requires=[ + "fatcat-openapi-client", + ], extras_require={"dev": ["yapf", "twine", "isort", "pytest"],}, ) |