From 010474eb9ff5ae21fccecd302de04c92945cfa8a Mon Sep 17 00:00:00 2001 From: Calum Meikle Date: Tue, 25 Feb 2025 17:12:58 +0100 Subject: [PATCH] Adding changelog and setup.py --- CHANGELOG | 5 +++++ setup.py | 22 ++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 CHANGELOG create mode 100644 setup.py diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..ea9f4f2 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,5 @@ +## 0.0.1 - 2025/02/25 + +- Initial Code for monarch DA preprocessor +- This is includes preprocessing for in-situ Eionet data for CAMS, VIIRS and sentinel SLSTR +- Calculating errors and regridding to the Monarch grid where necessary diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..0b7e37f --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +# Copyright 2024 Barcelona Supercomputing Center - Centro Nacional de +# Supercomputación (BSC-CNS) + +# Monarch DA Preprocessor + +from setuptools import find_packages +from setuptools import setup + +# Could update this using versioneer +version="0.1.0" + +setup( + name="monarch-DA-preprocessor", + version=version, + author="Calum Meikle", + author_email="calum.meikle@bsc.es", + packages=find_packages(), + include_package_data=True, +) -- GitLab