Skip to content

Instantly share code, notes, and snippets.

@ric2b
Last active December 13, 2019 14:20
Show Gist options
  • Save ric2b/7f02a284cec3f434b1238e0db2bc0b27 to your computer and use it in GitHub Desktop.
Save ric2b/7f02a284cec3f434b1238e0db2bc0b27 to your computer and use it in GitHub Desktop.
--extras not included when doing `poetry export --extras "raspberry" -f requirements.txt`
[tool.poetry]
name = "my-project"
version = "0.1.0"
description = ""
authors = [
"myname <myname@example.com>"
]
[tool.poetry.dependencies]
python = "^3.6"
"luma.core" = "*"
[tool.poetry.extras]
raspberry = ["luma.lcd"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment