Skip to content

Commit

Permalink
update README to better reflect that argparse-dataclass is not needed…
Browse files Browse the repository at this point in the history
… in plugin

Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Jun 29, 2023
1 parent ac03811 commit 78a3667
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,15 +169,8 @@ For the above to work for more than one plugin, it is very important that:
- You also provide a default argument, otherwise the same will happen!

You can currently add arguments for str, int, float, or bool. Advanced types can be added
when needed or requested. This is done by way of support from [argparse-dataclass](https://github.com/mivade/argparse_dataclass/),
which should be added to your setup.py (or in the case of the example here, is in [version.py](snakemake_executor_flux/version.py)):

```python
INSTALL_REQUIRES = (
("snakemake", {"min_version": None}),
("argparse-dataclass", {"min_version": None}),
)
```
when needed or requested. This is done by way of support from [argparse-dataclass](https://github.com/mivade/argparse_dataclass/)
that is added to Snakemake.

#### snakemake_minimum_version

Expand Down

0 comments on commit 78a3667

Please sign in to comment.