Skip to content

Commit 3409e0e

Browse files
authored
build(deps): add optional-dependencies group all (#251)
Fixes #246
1 parent 42e4de2 commit 3409e0e

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

docs/src/install.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,10 @@ Install with `python -m pip install "python-re3data[csv]"`.
149149
| ---------------------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------ |
150150
| [pandas](https://github.com/pandas-dev/pandas) | >= 2.0 | A powerful and flexible data analysis library, enables generation of DataFrames and CSV files from parsed XML responses. |
151151

152+
#### All
153+
154+
Install all available optional dependencies from above, with `python -m pip install "python-re3data[all]"`.
155+
152156
<!---
153157
This installation guide is adapted from these sources:
154158
- "pandas" Installation, https://pandas.pydata.org/docs/getting_started/install.html (BSD-3-Clause license)

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ dependencies = [
4646
"httpx>=0.27",
4747
"xsdata>=24.5",
4848
]
49+
optional-dependencies.all = [
50+
"python-re3data[cli,csv]",
51+
]
4952
optional-dependencies.cli = [
5053
"typer>=0.12",
5154
]
@@ -54,7 +57,7 @@ optional-dependencies.csv = [
5457
]
5558
optional-dependencies.dev = [
5659
"pre-commit-uv~=4.1",
57-
"python-re3data[cli,csv]",
60+
"python-re3data[all]",
5861
]
5962
optional-dependencies.docs = [
6063
"mike~=2.1",

0 commit comments

Comments
 (0)