Skip to content

Commit

Permalink
Add development dependencies and update build system configuration
Browse files Browse the repository at this point in the history
* **`pyproject.toml`**
  - Add necessary dependencies for the project using poetry
  - Ensure the project builds using poetry

* **`requirements_dev.in`**
  - Add a requirements_dev.in file for development dependencies
  - Include pytest as a development dependency
  • Loading branch information
jlantz committed Oct 29, 2024
1 parent b3e15c6 commit ef841b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ pytest = "^8.3.3"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
build-backend = "poetry.core.masonry.api"
2 changes: 2 additions & 0 deletions requirements_dev.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Development dependencies
pytest

0 comments on commit ef841b8

Please sign in to comment.