Skip to content

Commit

Permalink
feat: init python runner
Browse files Browse the repository at this point in the history
  • Loading branch information
jenspots committed Jul 29, 2024
1 parent be7f6df commit 7ec294a
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
repos:
- repo: https://github.com/pycqa/flake8
rev: 7.1.0
hooks:
- id: flake8
additional_dependencies:
- flake8-bugbear==24.2.6
- flake8-comprehensions
- flake8-simplify
- repo: https://github.com/pre-commit/pre-commit
rev: v3.7.0
hooks:
Expand Down
Empty file added runners/python/README.md
Empty file.
7 changes: 7 additions & 0 deletions runners/python/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions runners/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[tool.poetry]
name = "RDF-Connect Python Runner"
version = "0.1.0"
description = "Python runner for RDF-Connect using gRPC."
authors = ["Jens Pots <[email protected]>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.12"


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Empty file added runners/python/src/__init__.py
Empty file.
2 changes: 2 additions & 0 deletions runners/python/src/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
if __name__ == "__main__":
print("Hello, World!")
Empty file.

0 comments on commit 7ec294a

Please sign in to comment.