forked from sageteamorg/django-iranian-cities
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ feat: Add Poetry as the Package Manager
**Description**: - Added and for Poetry dependency management. - Added requirements.txt and requirements-dev.txt files
- Loading branch information
1 parent
99113d8
commit 4a9be0a
Showing
6 changed files
with
372 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,4 +137,6 @@ gunicorn-conf.py | |
uwsgi.ini | ||
.env.prod | ||
nginx.conf | ||
test_app/ | ||
test_app/ | ||
myenv/ | ||
myenv3_8/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
Oops, something went wrong.