Skip to content

Commit 037fb09

Browse files
committed
Modernize pyproject.toml
1 parent 22dd1c1 commit 037fb09

File tree

1 file changed

+5
-15
lines changed

1 file changed

+5
-15
lines changed

pyproject.toml

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,18 @@
11
[build-system]
22
build-backend = "setuptools.build_meta"
3-
requires = [
4-
"setuptools>=68",
5-
]
3+
requires = ["setuptools>=77"]
64

75
[project]
86
name = "DBUtils"
97
version = "3.1.1"
108
description = "Database connections for multi-threaded environments."
11-
license = {text = "MIT License"}
9+
license = "MIT"
1210
authors = [{name = "Christoph Zwerschke", email = "[email protected]"}]
1311
requires-python = ">=3.7"
1412
classifiers = [
1513
"Development Status :: 5 - Production/Stable",
1614
"Environment :: Web Environment",
1715
"Intended Audience :: Developers",
18-
"License :: OSI Approved :: MIT License",
1916
"Operating System :: OS Independent",
2017
"Programming Language :: Python",
2118
"Programming Language :: Python :: 3",
@@ -31,16 +28,9 @@ classifiers = [
3128
"Topic :: Software Development :: Libraries :: Python Modules",
3229
]
3330
[project.optional-dependencies]
34-
pg = [
35-
"PyGreSQL>=5",
36-
]
37-
docs = [
38-
"docutils",
39-
]
40-
tests = [
41-
"pytest>=7",
42-
"ruff",
43-
]
31+
pg = ["PyGreSQL>=5"]
32+
docs = ["docutils"]
33+
tests = ["pytest>=7", "ruff"]
4434

4535
[project.readme]
4636
file = "README.md"

0 commit comments

Comments
 (0)