diff --git a/pyproject.toml b/pyproject.toml index b102127..413a94b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,6 @@ requires = [ "setuptools>=42", "wheel", - "pydantic" ] diff --git a/setup.cfg b/setup.cfg index 9d7479d..9214da0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,11 +18,9 @@ package_dir = packages = find: python_requires = >=3.7 install_requires = - requests - aiohttp - asyncio - python-dotenv - pydantic + requests>=2.31.0 + python-dotenv>=1.0.0 + pydantic>=2.5.2 [options.packages.find] where = src diff --git a/setup.py b/setup.py index 7a7dc5e..e2122fc 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,6 @@ ], python_requires=">=3.7", install_requires=[ - "requests", "aiohttp", "asyncio", "python-dotenv", "pydantic" + "requests>=2.31.0", "python-dotenv>=1.0.0", "pydantic>=2.5.2" ], ) \ No newline at end of file