Skip to content

Commit d8f7cba

Browse files
committed
Adapt pyproject file
1 parent 04abf33 commit d8f7cba

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

pyproject.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
[tool.poetry]
1+
[project]
22
name = "dictdatabase"
3-
version = "2.5.0"
4-
repository = "https://github.com/mkrd/DictDataBase"
3+
version = "2.5.1"
54
description = "Easy-to-use database using dicts"
6-
authors = ["Marcel Kröker <[email protected]>"]
7-
license = "MIT"
85
readme = "README.md"
6+
authors = [{ name = "Marcel Kröker", email = "[email protected]" }]
7+
license = { file = "LICENSE" }
8+
requires-python = ">=3.8,<3.14"
99
classifiers=[
1010
"Programming Language :: Python :: 3",
1111
"License :: OSI Approved :: MIT License",
@@ -14,20 +14,20 @@ classifiers=[
1414
"Programming Language :: Python",
1515
"Topic :: Software Development :: Libraries :: Python Modules"
1616
]
17+
dependencies = [
18+
"orjson ~= 3.8.7"
19+
]
1720

18-
[tool.poetry.dependencies]
19-
python = "^3.8"
20-
orjson = "^3.8.7"
21-
22-
[tool.poetry.group.dev.dependencies]
23-
super-py = "^0.4.2"
24-
pyinstrument = "^4.4.0"
25-
pytest-cov = "^4.0.0"
26-
path-dict = "^3.0.4"
21+
[dependency-groups]
22+
dev = [
23+
"super-py ~= 0.4.2",
24+
"pyinstrument ~= 4.4.0",
25+
"pytest-cov ~= 4.0.0",
26+
"path-dict ~= 3.0.4",
27+
]
2728

28-
[build-system]
29-
requires = ["poetry-core"]
30-
build-backend = "poetry.core.masonry.api"
29+
[tool.setuptools]
30+
packages = ["dictdatabase"]
3131

3232

3333
[tool.ruff]

0 commit comments

Comments
 (0)