Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 1, 2024
1 parent 680dea2 commit e489048
Showing 1 changed file with 19 additions and 14 deletions.
33 changes: 19 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=42",
"setuptools_scm[toml]>=3.4",
"setuptools-scm[toml]>=3.4",
]

[project]
name = "django-simple-menu"
description = "Simple, yet powerful, code-based menus for Django applications"
readme = "README.rst"
license = {text = "BSD 2-Clause"}
authors = [{"name"= "Evan Borgstrom", "email"="[email protected]"}]
license = { text = "BSD 2-Clause" }
authors = [
{ "name" = "Evan Borgstrom", "email" = "[email protected]" },
]
requires-python = ">=3.6"
classifiers =[
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 3.2",
Expand All @@ -38,19 +40,20 @@ dynamic = [
"version",
]
dependencies = [
"Django>=3.2",
'importlib_metadata; python_version < "3.8"',
"django>=3.2",
"importlib-metadata; python_version<'3.8'",
]
[project.urls]
"Source Code" = "https://github.com/jazzband/django-simple-menu"
urls."Source Code" = "https://github.com/jazzband/django-simple-menu"

[tool.setuptools]
packages =[
"simple_menu",
"menu",
]
packages = [
"simple_menu",
"menu",
]
include-package-data = true
license-files = ["LICENSE"]
license-files = [
"LICENSE",
]

[tool.setuptools_scm]
# this empty section means: use_scm_version=True
Expand All @@ -61,7 +64,9 @@ local_scheme = "no-local-version"
source = [
"simple_menu",
]
plugins = ["covdefaults"]
plugins = [
"covdefaults",
]

[tool.coverage.report]
fail_under = 85

0 comments on commit e489048

Please sign in to comment.