From 3cb9c4325905d7e88985259c93c8fea1713edc14 Mon Sep 17 00:00:00 2001 From: Stefaan Lippens Date: Wed, 7 Feb 2024 17:28:21 +0100 Subject: [PATCH] Issue #117 include gunicorn configs in wheel --- CHANGELOG.md | 4 ++++ setup.py | 9 ++++++++- src/openeo_aggregator/about.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab6fd3a7..f3448352 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is roughly based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.18.1] + +- Include gunicorn configs in wheel (related to [#117](https://github.com/Open-EO/openeo-aggregator/issues/117)) + ## [0.18.0] - Start porting `AggregatorConfig` fields to `AggregatorBackendConfig` ([#112](https://github.com/Open-EO/openeo-aggregator/issues/112)) diff --git a/setup.py b/setup.py index 26bd8886..460e1a5e 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,14 @@ package_dir={"": "src"}, include_package_data=True, data_files=[ - ("openeo-aggregator", ["CHANGELOG.md"]), + ( + "openeo-aggregator-data", + [ + "CHANGELOG.md", + "conf/gunicorn.dev.py", + "conf/gunicorn.prod.py", + ], + ), ], python_requires=">=3.8", install_requires=[ diff --git a/src/openeo_aggregator/about.py b/src/openeo_aggregator/about.py index 36a73a7b..9f7132ab 100644 --- a/src/openeo_aggregator/about.py +++ b/src/openeo_aggregator/about.py @@ -2,7 +2,7 @@ import sys from typing import Optional -__version__ = "0.18.0a1" +__version__ = "0.18.1a1" def log_version_info(logger: Optional[logging.Logger] = None):