-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b70dd8f
commit 3c83ee4
Showing
2 changed files
with
232 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |