Skip to content

Commit 24123ac

Browse files
Fix setup.py dependencies formatting
Correct the formatting of the dependencies in setup.py by adding a missing comma. This change ensures that the package installation works correctly and includes the necessary libraries for the project.
1 parent 8cfcbb4 commit 24123ac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
"sqlalchemy>=2.0.38",
1313
"alembic>=1.13.0",
1414
"psycopg2-binary>=2.9.10",
15+
"python-jose[cryptography]>=3.3.0" "passlib[bcrypt]>=1.7.4",
16+
"slowapi>=0.1.9",
1517
],
1618
extras_require={
1719
"test": [
@@ -20,7 +22,6 @@
2022
"pytest-asyncio>=0.23.0",
2123
"httpx>=0.26.0", # For testing FastAPI endpoints
2224
"python-dotenv>=1.0.0", # For loading environment variables
23-
"slowapi>=0.1.9",
2425
],
2526
"dev": [
2627
"black>=25.0.0",

0 commit comments

Comments
 (0)