Skip to content

Commit

Permalink
Add pyproject stub for poetry
Browse files Browse the repository at this point in the history
Try to init scaffolding according to a github commit:

python-poetry/poetry#2740 (comment)
  • Loading branch information
steffeneemagine committed May 14, 2024
1 parent 0eb1ab3 commit 796fced
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def build(setup_kwargs):
print("Put your build code here!")
16 changes: 16 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[tool.poetry]
name = "tool-libeep"
version = "0.1.0"
description = ""
authors = ["Steffen Heimes <sheimes@ant-neuro.com>"]
readme = "README.md"

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

[tool.poetry.build]
script = "build.py"
generate-setup-file = true

[build-system]
requires = ["poetry-core", "setuptools"]

0 comments on commit 796fced

Please sign in to comment.