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