I want to distribute my python package, so I use setup.py
and bdist_wheel
. I am able to specific package name and version, but the filename generated is like package_name-0.0.2-py3-none-any.whl
. I haven't figured out how to specify the none
and any
in the file_name with setpy.py. I need this to distribute different package versions for diffferent operating systems and CUDA versions.
My code did work in this way:
setuptools.setup(
'''
platforms=['linux_x86_64'],
'''
)
which argument should I specify to replace the none
and any
?