Skip to content

Commit

Permalink
Add requests dependency to pyproject.toml and requirements.txt
Browse files Browse the repository at this point in the history
* **pyproject.toml**
  - Add `requests` dependency with version "^2.28.1"
  - Ensure the project builds using poetry

* **requirements.txt**
  - Add `requests` dependency with version "2.28.1"
  • Loading branch information
jlantz committed Oct 29, 2024
1 parent 31b1740 commit b3e15c6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ python = "^3.10"
rich = "^13.9.3"
pydantic = "^2.9.2"
cookiecutter = "^2.6.0"
requests = "^2.28.1"

[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
build-backend = "poetry.core.masonry.api"
5 changes: 5 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
rich==13.9.3
pydantic==2.9.2
cookiecutter==2.6.0
requests==2.28.1
pytest==8.3.3

0 comments on commit b3e15c6

Please sign in to comment.