File.open(readme) in setup.py isn't found

前端 未结 1 2122
梦如初夏
梦如初夏 2021-02-20 05:31

The setup.py file in a Python package I\'ve sent to pip:

#!/usr/bin/env python

from distutils.core import setup

setup(
    #......
    long_descri         


        
相关标签:
1条回答
  • 2021-02-20 05:39

    I needed to create MANIFEST.in with the following content:

    include README.md
    include LICENSE.txt
    
    0 讨论(0)
提交回复
热议问题