Skip to content

Commit

Permalink
Basic poetry setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
keriksson-rosenqvist committed Jun 11, 2024
1 parent b70dd8f commit 3c83ee4
Show file tree
Hide file tree
Showing 2 changed files with 232 additions and 0 deletions.
208 changes: 208 additions & 0 deletions poetry.lock

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

24 changes: 24 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[tool.poetry]
name = "qat-rpc"
version = "0.1.0"
description = "RPC tooling for OQC QAT."
authors = ["Kajsa Eriksson Rosenqvist <[email protected]>"]
readme = "README.md"
license = "BSD-3-Clause"

[tool.poetry.dependencies]
python = ">=3.8.1,<3.11"

[tool.poetry.group.dev.dependencies]
coverage = "^6.3.2"
pytest-cov = "~=2.10.1"

[tool.poetry.group.licenses]
optional = true

[tool.poetry.group.licenses.dependencies]
pip-licenses = "^3.5.3"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 3c83ee4

Please sign in to comment.