mirror of
https://github.com/MousaZeidBaker/poetry-plugin-up.git
synced 2025-10-05 21:32:40 +02:00
31 lines
698 B
TOML
31 lines
698 B
TOML
[tool.poetry]
|
|
name = "simple-project"
|
|
version = "1.2.3"
|
|
description = "Some description."
|
|
authors = ["Mousa Zeid Baker"]
|
|
license = "MIT"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
foo = "^2.2.2"
|
|
bar = "^2.2.2"
|
|
baz = {version = "^2.2.2", extras = ["qux", "quux"]}
|
|
corge = {version = "^2.2.2", optional = true}
|
|
grault = {version = "^2.2.2", allow-prereleases = true}
|
|
garply = {path = "./"}
|
|
waldo = {git = "https://example.com/test/project.git"}
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
fred = "^2.2.2"
|
|
plugh = "^2.2.2"
|
|
xyzzy = "^2.2.2"
|
|
nacho = "^2.2.2"
|
|
thud = "^2.2.2"
|
|
|
|
[tool.poetry.group.docs.dependencies]
|
|
foobar = "^2.2.2"
|
|
foobaz = "^2.2.2"
|
|
fooqux = "^2.2.2"
|
|
fooquux = "^2.2.2"
|
|
Foo_Corge = "^2.2.2"
|