Skip to content

Commit

Permalink
Adapt pyproject file
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrd committed Dec 15, 2024
1 parent e1324f8 commit 66d6dbb
Showing 1 changed file with 17 additions and 18 deletions.
35 changes: 17 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[tool.poetry]
[project]
name = "dictdatabase"
version = "2.5.0"
repository = "https://github.com/mkrd/DictDataBase"
version = "2.5.1"
description = "Easy-to-use database using dicts"
authors = ["Marcel Kröker <[email protected]>"]
license = "MIT"
readme = "README.md"
authors = [{ name = "Marcel Kröker", email = "[email protected]" }]
license = { file = "LICENSE" }
requires-python = ">=3.8,<3.14"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand All @@ -14,20 +14,19 @@ classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"orjson ~= 3.8.7"
]
[dependency-groups]
dev = [
"super-py ~= 0.4.2",
"pyinstrument ~= 4.4.0",
"pytest-cov ~= 4.0.0",
"path-dict ~= 3.0.4",
]

[tool.poetry.dependencies]
python = "^3.8"
orjson = "^3.10.0"

[tool.poetry.group.dev.dependencies]
super-py = "^0.4.2"
pyinstrument = "^4.4.0"
pytest-cov = "^4.0.0"
path-dict = "^3.0.4"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.setuptools]
packages = ["dictdatabase"]


[tool.ruff]
Expand Down

0 comments on commit 66d6dbb

Please sign in to comment.