Skip to content

Commit

Permalink
Rearragning extras and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
iluvcapra committed Nov 22, 2024
1 parent 61d91f2 commit a9cceec
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,18 @@ protobuf = "~= 5.26.1"
optional = true

[tool.poetry.group.dev.dependencies]
grpcio-tools = ">= 1.53.0"
grpcio-tools = {version=">= 1.53.0", extras=['dev']}

[tool.poetry.group.doc]
optional = true

[tool.poetry.group.doc.dependencies]
sphinx = '>= 5.3.0'
sphinx_rtd_theme = '>= 1.1.1'
sphinx = {version= '>= 5.3.0', extras= ['doc']}
sphinx_rtd_theme = {version= '>= 1.1.1', extras= ['doc']}

[tool.poetry.extras]
doc = ['sphinx', 'sphinx_rtd_theme']
dev = ["grpcio-tools"]

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit a9cceec

Please sign in to comment.