fix(packaging): use importlib-resources instead of pkg_resources

This commit is contained in:
Rémi Alvergnat
2021-04-29 14:36:51 +02:00
parent 85ac52a771
commit 6ef222ea28
3 changed files with 10 additions and 5 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
with io.open(os.path.join(here, 'CHANGELOG.md'), encoding='utf-8') as f:
changelog = f.read()
install_requires = ['rebulk>=3', 'babelfish', 'python-dateutil']
install_requires = ['rebulk>=3', 'babelfish', 'python-dateutil', 'importlib-resources']
setup_requires = ['pytest-runner']