Re: Python packages with extras dependencies

2019-02-05 Thread Petr Viktorin
On 2/5/19 12:44 AM, Eli Young wrote: Python packages can specify extras dependencies, which are sets of dependencies not required for core functionality, and which generally correspond to some feature. These can then be specified by downstream consumers of the package. For example, requests

Re: Python packages with extras dependencies

2019-02-05 Thread Igor Gnatenko
In Rust we have similar problem (we have "features" than "extras") and we always package them as a subpackages. https://src.fedoraproject.org/rpms/rust-serde/blob/master/f/rust-serde.spec rust-serde-devel rust-serde+alloc-devel rust-serde+default-devel rust-serde+derive-devel rust-serde+rc-devel

Re: Python packages with extras dependencies

2019-02-04 Thread Miro HronĨok
On 05. 02. 19 0:44, Eli Young wrote: Python packages can specify extras dependencies, which are sets of dependencies not required for core functionality, and which generally correspond to some feature. These can then be specified by downstream consumers of the package. For example, requests