Skip to content

Commit 20f7b0f

Browse files
committed
adding initial version of a sync FoxOps API client
1 parent 89095a8 commit 20f7b0f

18 files changed

Lines changed: 2116 additions & 0 deletions

.flake8

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[flake8]
2+
max-line-length = 120
3+
select = B,C,E,F,W,B950
4+
extend-ignore = E203, E501, W503, B008

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.venv/
2+
**/.pytest_cache/
3+
**/.mypy_cache/

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.PHONY: clean-test-infrastructure
2+
clean-test-infrastructure:
3+
docker ps -aq --filter "label=creator=pytest-docker-tools" | xargs docker rm -f

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# foxops-client-python
2+
3+
This repository contains the Python client for the [foxops](https://github.com/roche/foxops) templating tool.

0 commit comments

Comments
 (0)