Skip to content

Commit 9e34954

Browse files
committed
Update pyproject.toml for poetry 2
1 parent bc6f7e5 commit 9e34954

File tree

2 files changed

+59
-16
lines changed

2 files changed

+59
-16
lines changed

poetry.lock

+45-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+14-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1-
[tool.poetry]
1+
[project]
22
name = "smartmin"
33
version = "5.1.1"
44
description = "Scaffolding system for Django object management."
5-
authors = ["Nyaruka Ltd <[email protected]>"]
5+
license = { text = "BSD" }
6+
authors = [
7+
{"name" = "Nyaruka", "email" = "[email protected]"}
8+
]
69
readme = "README.md"
7-
license = "BSD"
8-
classifiers=[
10+
requires-python = ">=3.10,<3.13"
11+
dependencies = []
12+
13+
classifiers = [
914
"Development Status :: 5 - Production/Stable",
1015
"Environment :: Web Environment",
1116
"Intended Audience :: Developers",
@@ -18,19 +23,19 @@ packages = [
1823
{ include = "smartmin" },
1924
]
2025

21-
[tool.poetry.urls]
26+
[project.urls]
2227
repository = "http://github.com/nyaruka/smartmin"
2328

29+
2430
[tool.poetry.dependencies]
25-
python = "^3.10"
2631
Django = ">= 5.0, < 5.2"
2732
celery = ">= 5.1"
2833
redis = ">= 3.5.3"
2934
sqlparse = ">=0.4.1,<0.6.0"
3035
xlrd = "^1.2.0"
3136
xlwt = "^1.3.0"
3237

33-
[tool.poetry.dev-dependencies]
38+
[tool.poetry.group.dev.dependencies]
3439
black = "^24.3.0"
3540
coverage = {extras = ["toml"], version = "^7.2.7"}
3641
isort = "^5.12.0"
@@ -62,5 +67,5 @@ known_django = ["django"]
6267
source = ["smartmin"]
6368

6469
[build-system]
65-
requires = ["poetry-core>=1.0.0"]
66-
build-backend = "poetry.core.masonry.api"
70+
requires = ["poetry-core>=2.0.0,<3.0.0"]
71+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)