1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 14:31:46 +00:00

Add new dependencies to setup.py

Add `packaging` and `requests` to the `install_requires` list in `setup.py`
This commit is contained in:
Justin Ellingwood
2021-10-13 00:40:39 +02:00
committed by GitHub
parent cc36899a7d
commit 2fc2d311b7

View File

@@ -37,7 +37,7 @@ setup(
keywords='dotfiles jinja2',
packages=find_packages(exclude=['tests*']),
install_requires=['docopt', 'Jinja2', 'ruamel.yaml', 'python-magic'],
install_requires=['docopt', 'Jinja2', 'ruamel.yaml', 'python-magic', 'packaging', 'requests'],
extras_require={
'dev': ['check-manifest'],