initial commit

This commit is contained in:
Illia Kalnyi 2026-02-20 16:12:20 +01:00
commit 3c2aa1f2cf
3 changed files with 26 additions and 0 deletions

18
.gitignore vendored Normal file
View File

@ -0,0 +1,18 @@
# Python
.venv/
__pycache__/
*.pyc
# tooling
.pytest_cache/
.ruff_chache/
# editors
.idea/
# OS noise
.DS_store
# Critical
.env

3
pyproject.toml Normal file
View File

@ -0,0 +1,3 @@
[tool.pytest.ini_options]
pythonpath = ["."]

5
requirements.txt Normal file
View File

@ -0,0 +1,5 @@
ruff == 0.15.1
black == 26.1.0
pytest == 9.0.2
pre-commit == 4.5.1