Created
October 18, 2021 05:41
-
-
Save velovix/e816e34ebb0899060352c91817a98553 to your computer and use it in GitHub Desktop.
An example of a pyproject.toml using implicit extras
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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