Skip to content

Commit e489048

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 680dea2 commit e489048

File tree

1 file changed

+19
-14
lines changed

1 file changed

+19
-14
lines changed

pyproject.toml

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@
22
build-backend = "setuptools.build_meta"
33
requires = [
44
"setuptools>=42",
5-
"setuptools_scm[toml]>=3.4",
5+
"setuptools-scm[toml]>=3.4",
66
]
77

88
[project]
99
name = "django-simple-menu"
1010
description = "Simple, yet powerful, code-based menus for Django applications"
1111
readme = "README.rst"
12-
license = {text = "BSD 2-Clause"}
13-
authors = [{"name"= "Evan Borgstrom", "email"="[email protected]"}]
12+
license = { text = "BSD 2-Clause" }
13+
authors = [
14+
{ "name" = "Evan Borgstrom", "email" = "[email protected]" },
15+
]
1416
requires-python = ">=3.6"
15-
classifiers =[
17+
classifiers = [
1618
"Development Status :: 5 - Production/Stable",
1719
"Framework :: Django",
1820
"Framework :: Django :: 3.2",
@@ -38,19 +40,20 @@ dynamic = [
3840
"version",
3941
]
4042
dependencies = [
41-
"Django>=3.2",
42-
'importlib_metadata; python_version < "3.8"',
43+
"django>=3.2",
44+
"importlib-metadata; python_version<'3.8'",
4345
]
44-
[project.urls]
45-
"Source Code" = "https://github.com/jazzband/django-simple-menu"
46+
urls."Source Code" = "https://github.com/jazzband/django-simple-menu"
4647

4748
[tool.setuptools]
48-
packages =[
49-
"simple_menu",
50-
"menu",
51-
]
49+
packages = [
50+
"simple_menu",
51+
"menu",
52+
]
5253
include-package-data = true
53-
license-files = ["LICENSE"]
54+
license-files = [
55+
"LICENSE",
56+
]
5457

5558
[tool.setuptools_scm]
5659
# this empty section means: use_scm_version=True
@@ -61,7 +64,9 @@ local_scheme = "no-local-version"
6164
source = [
6265
"simple_menu",
6366
]
64-
plugins = ["covdefaults"]
67+
plugins = [
68+
"covdefaults",
69+
]
6570

6671
[tool.coverage.report]
6772
fail_under = 85

0 commit comments

Comments
 (0)