Skip to content

Instantly share code, notes, and snippets.

@tyrion
Last active May 20, 2019 14:40
Show Gist options
  • Save tyrion/fb7b70d437951548f5ee1b5946b9386e to your computer and use it in GitHub Desktop.
Save tyrion/fb7b70d437951548f5ee1b5946b9386e to your computer and use it in GitHub Desktop.
Poetry Bug
def hello():
print("hello poetry")
[tool.poetry]
name = "poetry-bug"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = "^3.7"
numpy-stubs = {git = "https://github.com/numpy/numpy-stubs.git", optional = true}
[tool.poetry.dev-dependencies]
[tool.poetry.extras]
stubs = ["numpy-stubs"]
[build-system]
requires = ["poetry>=0.12.16"]
build-backend = "poetry.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment