Maturin develop with pyproject.toml [project.optional-depenencies] #1941
-
is there a command line argument to Maturin develop that will install optional dependencies specified in the pyproject.toml file [project.optional-dependencies]
test = ["whatever>=1.1"] Why is this relevant in my use case. I have a rust extension which needs a third party library for testing and so I would like to add an optional test dependency using standard pyproject.toml format. I noticed that
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can use |
Beta Was this translation helpful? Give feedback.
You can use
maturin develop --extras test
.