Skip to content

Commit

Permalink
Add requirements.txt and poetry export in README
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvadm committed May 18, 2024
1 parent 2cb8762 commit b302ff4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,9 @@ Other commands are accessible via:
```bash
$ poetry run cli
```

Netlify build requires an updated `requirements.txt` file, if dependencies have changed, run:

```bash
$ poetry export --without-hashes --without dev -f requirements.txt -o requirements.txt
```
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@ serve = "cli.serve:serve"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

6 changes: 6 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
click==8.1.7 ; python_version >= "3.8" and python_version < "4.0"
colorama==0.4.6 ; python_version >= "3.8" and python_version < "4.0" and platform_system == "Windows"
jinja2==3.1.4 ; python_version >= "3.8" and python_version < "4.0"
markupsafe==2.1.5 ; python_version >= "3.8" and python_version < "4.0"
pyyaml==6.0.1 ; python_version >= "3.8" and python_version < "4.0"
ymlstash==1.2.0 ; python_version >= "3.8" and python_version < "4.0"

0 comments on commit b302ff4

Please sign in to comment.