Fluent-QA Python Base Package, include:
- BaseDataModel: pydantic model for structured data
- builtin tools
- configuration tools
- Initialize
git
inside your repo:
cd fluentqa-base && git init
- If you don't have
Poetry
installed run:
make poetry-download
- Initialize poetry and install
pre-commit
hooks:
make install
make pre-commit-install
- Run the codestyle:
make codestyle
- Upload initial code to GitHub:
git add .
git commit -m ":tada: Initial commit"
git branch -M main
git remote add origin https://github.com/fluent-qa/fluentqa-base.git
git push -u origin main