Skip to content

Commit fd38a02

Browse files
author
Martin Ruefenacht
committed
Added Poetry project management
1 parent 62b358c commit fd38a02

File tree

2 files changed

+252
-0
lines changed

2 files changed

+252
-0
lines changed

poetry.lock

Lines changed: 235 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
[tool.poetry]
3+
name = "pympistandard"
4+
version = "0.1.0"
5+
description = "Python API to the MPI Standard"
6+
authors = ["Martin Ruefenacht <martin.ruefenacht@lrz.de>"]
7+
8+
[tool.poetry.dependencies]
9+
python = "^3.6"
10+
pytest = "^7.0.1"
11+
pytest-sugar = "^0.9.4"
12+
13+
[tool.poetry.dev-dependencies]
14+
15+
[build-system]
16+
requires = ["poetry-core>=1.0.0"]
17+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)