Skip to content

Commit

Permalink
✨ feat: Add Poetry as the Package Manager
Browse files Browse the repository at this point in the history
**Description**:
- Added  and  for Poetry dependency management.
- Added requirements.txt and requirements-dev.txt files
  • Loading branch information
ARYAN-NIKNEZHAD committed Aug 4, 2024
1 parent 99113d8 commit 4a9be0a
Show file tree
Hide file tree
Showing 6 changed files with 372 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,6 @@ gunicorn-conf.py
uwsgi.ini
.env.prod
nginx.conf
test_app/
test_app/
myenv/
myenv3_8/
16 changes: 16 additions & 0 deletions packages/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
asgiref==3.8.1 ; python_version >= "3.8" and python_version < "4.0"
backports-zoneinfo==0.2.1 ; python_version >= "3.8" and python_version < "3.9"
colorama==0.4.6 ; python_version >= "3.8" and python_version < "4.0" and sys_platform == "win32"
coverage[toml]==7.6.0 ; python_version >= "3.8" and python_version < "4.0"
django==4.2.14 ; python_version >= "3.8" and python_version < "4.0"
exceptiongroup==1.2.2 ; python_version >= "3.8" and python_version < "3.11"
iniconfig==2.0.0 ; python_version >= "3.8" and python_version < "4.0"
packaging==24.1 ; python_version >= "3.8" and python_version < "4.0"
pluggy==1.5.0 ; python_version >= "3.8" and python_version < "4.0"
pytest-cov==5.0.0 ; python_version >= "3.8" and python_version < "4.0"
pytest-django==4.8.0 ; python_version >= "3.8" and python_version < "4.0"
pytest==8.3.2 ; python_version >= "3.8" and python_version < "4.0"
sqlparse==0.5.1 ; python_version >= "3.8" and python_version < "4.0"
tomli==2.0.1 ; python_version >= "3.8" and python_full_version <= "3.11.0a6"
typing-extensions==4.12.2 ; python_version >= "3.8" and python_version < "3.11"
tzdata==2024.1 ; python_version >= "3.8" and python_version < "4.0" and sys_platform == "win32"
6 changes: 6 additions & 0 deletions packages/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
asgiref==3.8.1 ; python_version >= "3.8" and python_version < "4.0"
backports-zoneinfo==0.2.1 ; python_version >= "3.8" and python_version < "3.9"
django==4.2.14 ; python_version >= "3.8" and python_version < "4.0"
sqlparse==0.5.1 ; python_version >= "3.8" and python_version < "4.0"
typing-extensions==4.12.2 ; python_version >= "3.8" and python_version < "3.11"
tzdata==2024.1 ; python_version >= "3.8" and python_version < "4.0" and sys_platform == "win32"
Loading

0 comments on commit 4a9be0a

Please sign in to comment.