From 89e98b87f658ae6dea448c05d4ab7b92923bc14c Mon Sep 17 00:00:00 2001 From: amochin Date: Tue, 30 Jul 2024 03:40:32 +0200 Subject: [PATCH] Put Assertion Engine to dependencies --- pyproject.toml | 8 +++++--- requirements.txt | 2 ++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2d05e7a7..0fcd0e9f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,8 @@ [build-system] requires = [ "setuptools>=61.0", - "robotframework" + "robotframework", + "robotframework-assertion-engine" ] build-backend = "setuptools.build_meta" @@ -11,10 +12,11 @@ authors = [{name="Franz Allan Valencia See", email="franz.see@gmail.com"}, ] description = "Database Library for Robot Framework" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.8.1" dependencies = [ "robotframework", - "robotframework-excellib" + "robotframework-excellib", + "robotframework-assertion-engine" ] classifiers = [ "Programming Language :: Python :: 3", diff --git a/requirements.txt b/requirements.txt index a6421b7a..0a7cdb7b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,7 @@ robotframework robotframework-excellib +robotframework-assertion-engine +psycopg2-binary pre-commit build twine \ No newline at end of file