Skip to content

Commit e080d16

Browse files
migrate tool.poetry fields to project
1 parent 93b515a commit e080d16

1 file changed

Lines changed: 15 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,29 @@
1-
[tool.poetry]
1+
[project]
22
name = "videoipath-automation-tool"
33
version = "0.2.1"
44
description = "A Python package for automating VideoIPath configuration workflows."
5-
authors = ["Paul Winterstein <paul.winterstein@swr.de>"]
6-
maintainers = ["SWR Media-over-IP Team <moip@swr.de>", "Josia Hildebrandt <manuel_josia.hildebrandt@swr.de>"]
5+
license = { text = "AGPL-3.0-only" }
76
readme = "README.md"
8-
packages = [{ include = "videoipath_automation_tool", from = "src" }]
7+
requires-python = "^3.11"
8+
authors = [
9+
{ name = "Paul Winterstein", email = "paul.winterstein@swr.de" },
10+
]
11+
maintainers = [
12+
{ name = "SWR Media-over-IP Team", email = "moip@swr.de" },
13+
{ name = "Josia Hildebrandt", email = "manuel_josia.hildebrandt@swr.de" },
14+
]
915
keywords = ["videoipath", "automation", "nevion", "media-over-ip", "st2110", "orchestration"]
1016

11-
[tool.poetry.urls]
17+
[project.urls]
1218
Homepage = "https://github.com/SWR-MoIP/VideoIPath-Automation-Tool"
1319
Repository = "https://github.com/SWR-MoIP/VideoIPath-Automation-Tool"
1420
Issues = "https://github.com/SWR-MoIP/VideoIPath-Automation-Tool/issues"
1521
Documentation = "https://github.com/SWR-MoIP/VideoIPath-Automation-Tool#documentation"
1622

23+
24+
[tool.poetry]
25+
packages = [{ include = "videoipath_automation_tool", from = "src" }]
26+
1727
[tool.poetry.dependencies]
1828
python = "^3.11"
1929
requests = "^2.31.0"

0 commit comments

Comments
 (0)