An error occurred while loading the file. Please try again.
-
Remi Cresson authored07490b36
Forked from an inaccessible project.
from setuptools import setup, find_packages
install_requires = [
"requests", "qrcode", "appdirs", "pydantic", "pystac", "pystac_client"
]
setup(
name="dinamis-sdk",
version="0.0.5",
description="DINAMIS SDK",
python_requires=">=3.8",
author="Remi Cresson",
author_email="remi.cresson@inrae.fr",
license="MIT",
zip_safe=False,
install_requires=install_requires,
packages=find_packages(),
)