Skip to content

Commit a508b6b

Browse files
authored
Merge pull request #89 from braboj/codex/create-requirements-file-and-documentation
Add dependency list and setup instructions
2 parents 76444ec + 46b8d38 commit a508b6b

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,15 @@ language for junior, intermediate, and advanced programmers. It covers
77
everything from the basics of Python syntax to advanced topics like
88
SOLID principles, design patterns, and best practices.
99

10+
## Installation
11+
12+
Create a virtual environment and install dependencies:
13+
14+
```bash
15+
python -m venv .venv
16+
source .venv/bin/activate
17+
pip install -r requirements.txt
18+
```
19+
1020
## License
1121
This project is licensed under the [MIT License](LICENSE).

requirements.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
dill
2+
numpy
3+
requests
4+
six
5+
pytest
6+
hypothesis

0 commit comments

Comments
 (0)