Skip to content

Commit

Permalink
Update pyproject.toml for poetry 2
Browse files Browse the repository at this point in the history
  • Loading branch information
norkans7 committed Jan 10, 2025
1 parent bc6f7e5 commit 9e34954
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 16 deletions.
52 changes: 45 additions & 7 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 14 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
[tool.poetry]
[project]
name = "smartmin"
version = "5.1.1"
description = "Scaffolding system for Django object management."
authors = ["Nyaruka Ltd <code@nyaruka.com>"]
license = { text = "BSD" }
authors = [
{"name" = "Nyaruka", "email" = "code@nyaruka.com"}
]
readme = "README.md"
license = "BSD"
classifiers=[
requires-python = ">=3.10,<3.13"
dependencies = []

classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
Expand All @@ -18,19 +23,19 @@ packages = [
{ include = "smartmin" },
]

[tool.poetry.urls]
[project.urls]
repository = "http://github.com/nyaruka/smartmin"


[tool.poetry.dependencies]
python = "^3.10"
Django = ">= 5.0, < 5.2"
celery = ">= 5.1"
redis = ">= 3.5.3"
sqlparse = ">=0.4.1,<0.6.0"
xlrd = "^1.2.0"
xlwt = "^1.3.0"

[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
coverage = {extras = ["toml"], version = "^7.2.7"}
isort = "^5.12.0"
Expand Down Expand Up @@ -62,5 +67,5 @@ known_django = ["django"]
source = ["smartmin"]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 9e34954

Please sign in to comment.