Skip to content

Commit 3315d35

Browse files
Release version 0.1.0
1 parent a823b55 commit 3315d35

File tree

1 file changed

+21
-10
lines changed

1 file changed

+21
-10
lines changed

pyproject.toml

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,35 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
[tool.poetry]
5+
[project]
66
name = "isduba"
7-
version = "1.0"
7+
version = "0.1.0"
88
description = "Python client library for accessing the ISDuBA API"
9-
authors = []
9+
license = { text = "Apache-2.0" }
10+
authors = [
11+
{ name = "Sebastian Wagner", email = "swagner@intevation.de" }
12+
]
13+
maintainers = []
1014
readme = "README.md"
15+
keywords = [ "csaf", "isduba" ]
16+
classifiers = [
17+
"Development Status :: 3 - Alpha",
18+
"Topic :: Software Development :: Libraries :: Python Modules",
19+
"Topic :: Security"
20+
]
21+
requires-python = ">=3.9"
22+
dependencies = [
23+
"httpx (>=0.20.0,<0.29.0)",
24+
"attrs>=22.2.0",
25+
"python-dateutil (>=2.8.0,<3.0.0)"
26+
]
27+
28+
[tool.poetry]
1129
packages = [
1230
{include = "isduba"},
1331
]
1432
include = ["CHANGELOG.md", "isduba/py.typed"]
1533

16-
17-
[tool.poetry.dependencies]
18-
python = "^3.9"
19-
httpx = ">=0.20.0,<0.29.0"
20-
attrs = ">=22.2.0"
21-
python-dateutil = "^2.8.0"
22-
2334
[build-system]
2435
requires = ["poetry-core>=1.0.0"]
2536
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)