You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Can I get help here please? I found some new releases/projects moved from using setup.py to pyproject.toml file. Does this pyp2rpm tool help to generate SPEC file for those projects?
Thanks
The text was updated successfully, but these errors were encountered:
I came across a hack(for the lack of better word) to run specfile generation for projects lacking setup file, in the source find metadata_extractors.py file and edit the function get_setup_py to get a custom written file(I use /tmp/setup.py) and write a generic setup.py to it
from setuptools import setup, find_packages
if __name__ == '__main__':
setup(name="%{pypi_name}",
version="%{version}",
packages=find_packages(),)
Hi,
Can I get help here please? I found some new releases/projects moved from using
setup.py
topyproject.toml
file. Does thispyp2rpm
tool help to generate SPEC file for those projects?Thanks
The text was updated successfully, but these errors were encountered: