Skip to content

Commit

Permalink
feat: Add new option --exclude-name
Browse files Browse the repository at this point in the history
  • Loading branch information
mzakharovcy committed Oct 6, 2023
1 parent 7f39918 commit 6ddb3ca
Showing 1 changed file with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[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 = "^1.1.1"
bar = "^1.1.1"
baz = {version = "^2.2.2", extras = ["qux", "quux"]}
corge = {version = "^2.2.2", optional = true}
grault = {version = "^1.1.1", allow-prereleases = true}
garply = {path = "./"}
waldo = {git = "https://example.com/test/project.git"}

[tool.poetry.group.dev.dependencies]
fred = "1.1.1"
plugh = "^2.2.2"
xyzzy = "~2.2.2"
nacho = "<1.1.1"
thud = ">1.1.1"

[tool.poetry.group.docs.dependencies]
foobar = "<=1.1.1"
foobaz = ">=2.2.2"
fooqux = "!=1.1.1"
fooquux = "*"
Foo_Corge = "^2.2.2"

0 comments on commit 6ddb3ca

Please sign in to comment.