Skip to content

Commit

Permalink
Added: for requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Arvind-4 committed May 17, 2024
1 parent 6a50a05 commit 9fa8ee5
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/commands/export.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
#!/bin/bash
poetry export --without-hashes --format=requirements.txt > requirements.txt

# For requirements.txt
echo "Exporting requirements.txt"
poetry export --without-hashes --format=requirements.txt > requirements.txt

# For requirements-dev.txt
echo "Exporting requirements-dev.txt"
poetry export --without-hashes --with dev --format=requirements.txt > requirements-dev.txt
29 changes: 29 additions & 0 deletions src/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
asgiref==3.7.2 ; python_version >= "3.10" and python_version < "4.0"
black==24.2.0 ; python_version >= "3.10" and python_version < "4.0"
click==8.1.7 ; python_version >= "3.10" and python_version < "4.0"
colorama==0.4.6 ; python_version >= "3.10" and python_version < "4.0"
cssbeautifier==1.15.1 ; python_version >= "3.10" and python_version < "4.0"
django-cors-headers==4.3.1 ; python_version >= "3.10" and python_version < "4.0"
django==4.2.11 ; python_version >= "3.10" and python_version < "4.0"
djangorestframework==3.14.0 ; python_version >= "3.10" and python_version < "4.0"
djlint==1.34.1 ; python_version >= "3.10" and python_version < "4.0"
editorconfig==0.12.4 ; python_version >= "3.10" and python_version < "4.0"
html-tag-names==0.1.2 ; python_version >= "3.10" and python_version < "4.0"
html-void-elements==0.1.0 ; python_version >= "3.10" and python_version < "4.0"
jsbeautifier==1.15.1 ; python_version >= "3.10" and python_version < "4.0"
json5==0.9.20 ; python_version >= "3.10" and python_version < "4.0"
mypy-extensions==1.0.0 ; python_version >= "3.10" and python_version < "4.0"
packaging==23.2 ; python_version >= "3.10" and python_version < "4.0"
pathspec==0.12.1 ; python_version >= "3.10" and python_version < "4.0"
platformdirs==4.2.0 ; python_version >= "3.10" and python_version < "4.0"
python-decouple==3.8 ; python_version >= "3.10" and python_version < "4.0"
pytz==2024.1 ; python_version >= "3.10" and python_version < "4.0"
pyyaml==6.0.1 ; python_version >= "3.10" and python_version < "4.0"
regex==2023.12.25 ; python_version >= "3.10" and python_version < "4.0"
six==1.16.0 ; python_version >= "3.10" and python_version < "4.0"
sqlparse==0.4.4 ; python_version >= "3.10" and python_version < "4.0"
tomli==2.0.1 ; python_version >= "3.10" and python_version < "3.11"
tqdm==4.66.2 ; python_version >= "3.10" and python_version < "4.0"
typing-extensions==4.10.0 ; python_version >= "3.10" and python_version < "3.11"
tzdata==2024.1 ; python_version >= "3.10" and python_version < "4.0" and sys_platform == "win32"
whitenoise==6.6.0 ; python_version >= "3.10" and python_version < "4.0"
1 change: 1 addition & 0 deletions src/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ asgiref==3.7.2 ; python_version >= "3.10" and python_version < "4.0"
django-cors-headers==4.3.1 ; python_version >= "3.10" and python_version < "4.0"
django==4.2.11 ; python_version >= "3.10" and python_version < "4.0"
djangorestframework==3.14.0 ; python_version >= "3.10" and python_version < "4.0"
python-decouple==3.8 ; python_version >= "3.10" and python_version < "4.0"
pytz==2024.1 ; python_version >= "3.10" and python_version < "4.0"
sqlparse==0.4.4 ; python_version >= "3.10" and python_version < "4.0"
typing-extensions==4.10.0 ; python_version >= "3.10" and python_version < "3.11"
Expand Down

0 comments on commit 9fa8ee5

Please sign in to comment.