Adding missing dependency.
This commit is contained in:
parent
3b01fc3b05
commit
700d1eb376
|
@ -1,4 +1,5 @@
|
|||
venv
|
||||
test
|
||||
build
|
||||
dist
|
||||
loaih.egg-info
|
||||
|
|
4
setup.py
4
setup.py
|
@ -4,7 +4,7 @@
|
|||
"""Helps building and automatizing building LibreOffice AppImages."""
|
||||
|
||||
from pathlib import Path
|
||||
from setuptools import setup,find_packages
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
this_directory = Path(__file__).parent
|
||||
long_description = (this_directory / "README.md").read_text()
|
||||
|
@ -23,7 +23,7 @@ setup(
|
|||
'loaih = loaih.script:cli',
|
||||
],
|
||||
},
|
||||
install_requires=[ 'click', 'lxml', 'packaging', 'pyyaml' ],
|
||||
install_requires=['click', 'lxml', 'packaging', 'pyyaml', 'requests'],
|
||||
license='MIT',
|
||||
url='https://git.libreitalia.org/LibreItalia/loaih/',
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue