Skip to content

Commit

Permalink
Add unidecode dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
creisle committed Mar 8, 2023
1 parent 8c5991c commit c734a33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
long_description = fh.read()


DEV_REQS = ['black', 'flake8', 'isort', 'mypy']
DEV_REQS = ['black', 'flake8', 'isort', 'mypy', 'requests-cache']
TEST_REQS = ['biopython', 'snakemake', 'ftputil', 'requests', 'pytest', 'pytest-cov', 'hypothesis']

setup(
Expand All @@ -17,7 +17,7 @@
description='Convert between NCBI pubmed/PMC and BIOC formats',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['bioc>=2.0', 'typing_extensions'],
install_requires=['bioc>=2.0', 'typing_extensions', 'unidecode'],
extras_require={'dev': DEV_REQS + TEST_REQS, 'test': TEST_REQS},
python_requires='>=3.6',
author='Jake Lever',
Expand Down

0 comments on commit c734a33

Please sign in to comment.