Hello everyone !
I'll try to explain the subject the best I can, I'm not an expert
Basically I'm a .Net developper and pretty confident on Windows, but following some big changes in my company, I need to port some of my applications to CentOS.
So yeah I've started working from scratch with Python and Kivy for the UI, and everything is great !
The only annoying point for me is that the integration team ask for a "Full" RPM package. Let's say the RPM should contain everything needed to run the application, from the application files to the dependencies like Kivy... The reason is that the computers using it does not have a free access to the internet to download the modules.
And this is basically where I'm beginning to get stuck.
I'm able to generate a RPM package with a setup.py and the command
And then I'm trying to figure out if
If you need any more information, tell me !
Thank you
I'll try to explain the subject the best I can, I'm not an expert

Basically I'm a .Net developper and pretty confident on Windows, but following some big changes in my company, I need to port some of my applications to CentOS.
So yeah I've started working from scratch with Python and Kivy for the UI, and everything is great !
The only annoying point for me is that the integration team ask for a "Full" RPM package. Let's say the RPM should contain everything needed to run the application, from the application files to the dependencies like Kivy... The reason is that the computers using it does not have a free access to the internet to download the modules.
And this is basically where I'm beginning to get stuck.
I'm able to generate a RPM package with a setup.py and the command
python3 setup.py bdist_rpmbut it does not include Kivy even if I put :
install_requires=[ 'kivy', ],I've tried to look at some ways to download the modules in a folder with pip or wagon but it's not working (for wagon I think it's because there is no Wheels for Kivy).
And then I'm trying to figure out if
- It's possible ?
- Someone already tried to do that ?
- I need to work differently ?
If you need any more information, tell me !
Thank you
