diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml
index 1ac0007..5e3e0f9 100644
--- a/.github/workflows/python-package.yml
+++ b/.github/workflows/python-package.yml
@@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: [3.8, 3.9, 3.10.0, 3.11.0]
+ python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
diff --git a/.idea/.gitignore b/.idea/.gitignore
deleted file mode 100644
index 13566b8..0000000
--- a/.idea/.gitignore
+++ /dev/null
@@ -1,8 +0,0 @@
-# Default ignored files
-/shelf/
-/workspace.xml
-# Editor-based HTTP Client requests
-/httpRequests/
-# Datasource local storage ignored files
-/dataSources/
-/dataSources.local.xml
diff --git a/.idea/fastapi-helpers.iml b/.idea/fastapi-helpers.iml
deleted file mode 100644
index 5195124..0000000
--- a/.idea/fastapi-helpers.iml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
deleted file mode 100644
index 90d6d0d..0000000
--- a/.idea/inspectionProfiles/Project_Default.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml
deleted file mode 100644
index 105ce2d..0000000
--- a/.idea/inspectionProfiles/profiles_settings.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
deleted file mode 100644
index 0e07a78..0000000
--- a/.idea/misc.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
deleted file mode 100644
index 3a0fd2c..0000000
--- a/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
deleted file mode 100644
index 94a25f7..0000000
--- a/.idea/vcs.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
index a6745f2..485c795 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,42 +1,25 @@
-aiosqlite==0.17.0
-anyio==3.6.1
-argon2-cffi==21.3.0
-argon2-cffi-bindings==21.2.0
-attrs==21.4.0
-autopep8==1.6.0
-boto3==1.26.8
-botocore==1.29.8
-certifi==2022.6.15
-cffi==1.15.1
-charset-normalizer==2.1.0
-click==8.1.3
-databases==0.6.0
-fastapi==0.87.0
+aiosqlite==0.19.0
+annotated-types==0.6.0
+anyio==3.7.1
+boto3==1.33.12
+botocore==1.33.12
+click==8.1.7
+databases==0.6.2
+exceptiongroup==1.2.0
+fastapi==0.105.0
fastapi-better-logger==0.0.4
-greenlet==2.0.1
-httpx==0.23.0
-idna==3.3
-iniconfig==1.1.1
+idna==3.6
jmespath==1.0.1
-orjson==3.8.1
-ormar==0.12.0
-packaging==21.3
-pluggy==1.0.0
-py==1.11.0
-pycparser==2.21
-pydantic==1.10.2
-pyparsing==3.0.9
-pytest==7.1.2
-pytest-asyncio==0.19.0
+orjson==3.9.10
+ormar==0.12.2
+pydantic==1.10.8
+pydantic_core==2.14.5
python-dateutil==2.8.2
-requests==2.28.1
-s3transfer==0.6.0
+s3transfer==0.8.2
six==1.16.0
-sniffio==1.2.0
-SQLAlchemy==1.4.38
-starlette==0.21.0
-toml==0.10.2
-tomli==2.0.1
-typing_extensions==4.4.0
-urllib3==1.26.10
+sniffio==1.3.0
+SQLAlchemy==1.4.41
+starlette==0.27.0
+typing_extensions==4.9.0
+urllib3==1.26.18
watchtower==3.0.0
\ No newline at end of file
diff --git a/setup.py b/setup.py
index 77a54b8..5a70765 100644
--- a/setup.py
+++ b/setup.py
@@ -60,13 +60,12 @@ def get_packages(package):
python_requires=">=3.8",
data_files=[("", ["LICENSE.md"])],
install_requires=[
- "aiosqlite>=0.17.0",
- "argon2-cffi>=21.3.0",
- "ormar>=0.11.00",
- 'pydantic>=1.8.2',
- "fastapi>=0.78.0",
- "fastapi-better-logger>=0.0.4",
- "typing_extensions>=4.0.0",
+ "aiosqlite>=0.19.0",
+ "ormar>=0.12.2",
+ 'pydantic>=1.10.8',
+ "fastapi>=0.105.0",
+ "fastapi-better-logger>=0.0.5",
+ "typing_extensions>=4.9.0",
"watchtower>=3.0.0",
"boto3>=1.20.3"
],
@@ -75,7 +74,6 @@ def get_packages(package):
"mysql": ["aiomysql", "pymysql"],
"sqlite": ["aiosqlite"],
"orjson": ["orjson"],
- "crypto": ["cryptography"],
},
classifiers=[
"Intended Audience :: Developers",