Skip to content

Commit 09e55e9

Browse files
committed
build: compatible new setuptools
1 parent 50e7aec commit 09e55e9

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

asgi_webdav/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def main(**kwargs):
111111
if uvicorn is None:
112112
print(
113113
"Please install ASGI web server implementation first.\n"
114-
" eg: pip install -U ASGIWebDAV[uvicorn]"
114+
" eg: pip install -U ASGIWebDAV[standalone]"
115115
)
116116
exit(1)
117117

pyproject.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,15 @@ version = { attr = "asgi_webdav.__version__" }
4949
dependencies = { file = "requirements.d/basic.txt" }
5050

5151
[tool.setuptools.dynamic.optional-dependencies]
52-
full = { file = "requirements.d/full.txt" }
53-
ldap = { file = "requirements.d/ldap.txt" }
52+
full = { file = [
53+
"requirements.d/standalone.txt",
54+
# extra
55+
"requirements.d/ldap.txt",
56+
"requirements.d/webhdfs.txt",
57+
] }
58+
5459
standalone = { file = "requirements.d/standalone.txt" }
60+
ldap = { file = "requirements.d/ldap.txt" }
5561
webhdfs = { file = "requirements.d/webhdfs.txt" }
5662

5763
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)