From 6d06bf8bcb76187d5c052b943d9bdc513957d4c1 Mon Sep 17 00:00:00 2001 From: Felddy Date: Mon, 12 Feb 2024 13:15:00 -0500 Subject: [PATCH] Add new dependencies to setup.py --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index cf5c127..37f74f2 100644 --- a/setup.py +++ b/setup.py @@ -93,6 +93,7 @@ def get_version(version_file): install_requires=[ "beanie == 1.25.0", "docopt == 0.6.2", + "pydantic[email, hypothesis]", "schema == 0.7.5", "setuptools >= 69.0.3", ], @@ -108,8 +109,12 @@ def get_version(version_file): # to never grab the regression version. "coveralls != 1.11.0", "docker == 7.0.0", + "hypothesis", + "mimesis-factory", + "mimesis", "pre-commit", "pytest-cov", + "pytest-factoryboy", "pytest", ] },