long lines in install_requires #3344
-
Hello, I have a dependency for my package with a lot of extras (like apackage[extra1, extra2, extra3, extra4, ...]). [options]
install_requires =
package1
package2
package3[
extra1, extra2, extra3, extra4,
extra5, extra6, extra7, extra8
] pip tells me the following when I try to install:
Is there a way to split my bunch of extras on several lines? Thanks Nicolas |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @Gaasmann , I don't think this is possible using Maybe you can try |
Beta Was this translation helpful? Give feedback.
Hi @Gaasmann , I don't think this is possible using
setup.cfg
. The.ini
syntax is very limited...Maybe you can try
pyproject.toml
and a some multiline TOML strings (I never tried myself, not sure if it works).