Skip to content

Commit 2827e10

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

1 file changed

Lines changed: 15 additions & 20 deletions

File tree

pyproject.toml

Lines changed: 15 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -51,33 +51,28 @@ dependencies = [
5151
"watchdog>=2.3.1",
5252
]
5353

54-
[project.optional-dependencies]
55-
mongo = [
56-
"pymongo>=4.0",
54+
optional-dependencies.all = [
55+
"boto3>=1.26",
56+
"pymongo>=4",
57+
"redis>=4",
58+
"sqlalchemy>=2",
5759
]
58-
redis = [
59-
"redis>=4.0.0",
60+
optional-dependencies.mongo = [
61+
"pymongo>=4",
6062
]
61-
sql = [
62-
"sqlalchemy>=2.0",
63+
optional-dependencies.redis = [
64+
"redis>=4",
6365
]
64-
s3 = [
65-
"boto3>=1.26.0",
66+
optional-dependencies.s3 = [
67+
"boto3>=1.26",
6668
]
67-
all = [
68-
"boto3>=1.26.0",
69-
"pymongo>=4.0",
70-
"redis>=4.0.0",
71-
"sqlalchemy>=2.0",
69+
optional-dependencies.sql = [
70+
"sqlalchemy>=2",
7271
]
73-
74-
[project.urls]
75-
Source = "https://github.com/python-cachier/cachier"
76-
72+
urls.Source = "https://github.com/python-cachier/cachier"
7773
# --- setuptools ---
7874

79-
[project.scripts]
80-
cachier = "cachier.__main__:cli"
75+
scripts.cachier = "cachier.__main__:cli"
8176

8277
[tool.setuptools]
8378
include-package-data = true

0 commit comments

Comments
 (0)