user2207495
user2207495

Reputation: 325

How to include rpm dependency in setup.py

I'm new to python but i want to create rpm package by using setuptools and bdist_rpm option. The problem I've occurred is how to include dependencies to other rpm (c/c++ binaries libraries).

Upvotes: 3

Views: 4397

Answers (1)

smani
smani

Reputation: 1973

You need to add the dependencies to the Requires section, see distutils documentation.

Upvotes: 3

Related Questions