Skip to content

Instantly share code, notes, and snippets.

@jembishop
Created December 1, 2022 10:08
Show Gist options
  • Save jembishop/12a7fdb9b8519cd800fe647f12d408fa to your computer and use it in GitHub Desktop.
Save jembishop/12a7fdb9b8519cd800fe647f12d408fa to your computer and use it in GitHub Desktop.
[tool.poetry]
name = "my-package"
version = "0.1.0"
description = ""
authors = ["jem <jem@example.co.uk>"]
readme = "README.md"
build = "build.py"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
my-other-package = {path = "../my-other-package", develop = true}
numpy = "^1.23.5"
cython = "^0.29.32"
[build-system]
requires = ["poetry-core", "numpy", "Cython", "setuptools"]
build-backend = "poetry.core.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment