Why use str constants with setuptools?1 points·by sublee·14 lat temu·0 commentsWhen we use setuptools for packaging our Python library, why write like this? setup( name='mymodule', version='0.1', ) not this? import mymodule setup( name=mymodule.__name__, version=mymodule.__version__, ) Please answer.0 commentsPost comment—
not this?
Please answer.