Skip to content
Snippets Groups Projects
Commit 50d79144 authored by Claus Michele's avatar Claus Michele
Browse files

Merge branch 'add_setup' into 'main'

Restructure project

See merge request !6
parents adcf5fa1 9ec0fd92
No related branches found
Tags 0.0.1
2 merge requests!17Align with main,!6Restructure project
*.json
tmp*
results/
venv/
__pycache__/
result_NDVI/
out*
data/
tests/
\ No newline at end of file
.ipynb_checkpoints/
build/
*.egg-info/
MIT License
Copyright (c) 2023 Eurac Research
Copyright (c) 2024 Eurac Research - Institute for Earth Observation
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
......
This diff is collapsed.
__title__ = "raster2stac"
from raster2stac._version import __version__
def client_version() -> str:
try:
import importlib.metadata
return importlib.metadata.version("raster2stac")
except Exception:
return __version__
\ No newline at end of file
__version__ = "0.0.1"
\ No newline at end of file
This diff is collapsed.
setup.py 0 → 100644
from setuptools import setup
setup(
name="raster2stac",
version="0.0.1",
description="Create valid STAC Collections, Items and Assets given already existing raster datasets",
author="Michele Claus",
author_email="michele.claus@eurac.edu",
packages=["raster2stac"], #same as name
install_requires=[
"numpy",
"pandas",
"xarray",
"rioxarray",
"pystac",
"rio_stac",
"boto3",
"botocore",
"openeo_processes_dask",
], #external packages as dependencies
)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment