Skip to content

Instantly share code, notes, and snippets.

@velovix
Created October 18, 2021 05:41
Show Gist options
  • Save velovix/e816e34ebb0899060352c91817a98553 to your computer and use it in GitHub Desktop.
Save velovix/e816e34ebb0899060352c91817a98553 to your computer and use it in GitHub Desktop.
An example of a pyproject.toml using implicit extras
[tool.poetry]
name = "my_project"
version = "0.1.0"
description = "A project!"
authors = ["Tyler Compton <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.26.0"
pendulum = {version = "^2.1.2", extras = ["time"]}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment