Skip to content
This repository was archived by the owner on Sep 30, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@

- **Main config** based on **Pydantic schema** - <https://pypi.org/project/pydantic>
- Load **environment variables** - <https://pypi.org/project/python-dotenv>
- Load from **multiple** configs directories
- Load configs from **YAML** and **JSON** files
- Update the default config with additional configurations (**`extra_configs`** directory)
- Update the default config with additional configurations (**`extra_dir`** directory)
- **Pre-load hook** function to modify config data before loading and validation
- **Validate config** values with **Pydantic validators**
- Config as **dictionary** or **Pydantic model** (with type hints)
Expand Down
6 changes: 6 additions & 0 deletions docs/scripts/4.test.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,9 @@ To execute the test script, simply run the following command in the terminal:
```

**Source code**: [**`test.sh`**](../../scripts/test.sh)

---

### References

- <https://docs.pytest.org>
6 changes: 6 additions & 0 deletions docs/scripts/6.build.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,9 @@ To execute the build script with the different flags, use the following commands
This script is particularly beneficial for developers, streamlining the build, testing, and publishing process. It provides a one-stop solution for all the build needs of a Python project, reducing chances of errors and ensuring consistency.

**Source code**: [**`build.sh`**](../../scripts/build.sh)

---

### References

- <https://https://packaging.python.org/en/latest/tutorials/packaging-projects>