diff --git a/evals/__init__.py b/evals/__init__.py index c495d189..916f3a44 100644 --- a/evals/__init__.py +++ b/evals/__init__.py @@ -1,6 +1,2 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- # Copyright (C) 2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 - -# diff --git a/evals/benchmark/__init__.py b/evals/benchmark/__init__.py new file mode 100644 index 00000000..4057dc01 --- /dev/null +++ b/evals/benchmark/__init__.py @@ -0,0 +1,2 @@ +# Copyright (C) 2025 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 diff --git a/evals/version.py b/evals/version.py index 48889783..6305c102 100644 --- a/evals/version.py +++ b/evals/version.py @@ -3,4 +3,4 @@ # Copyright (C) 2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 -__version__ = "1.1" +__version__ = "1.2" diff --git a/setup.py b/setup.py index 0b565187..a2c04053 100644 --- a/setup.py +++ b/setup.py @@ -24,5 +24,6 @@ long_description_content_type="text/markdown", url="https://github.com/opea-project/GenAIEval", packages=find_packages(), + package_data={"evals.benchmark.stresscli.locust": ["*.conf"]}, python_requires=">=3.10", )