farcepest / MySQLdb1

MySQL database connector for Python (legacy version)
https://sourceforge.net/projects/mysql-python/
666 stars 318 forks source link

1.2.5 bdist_rpm failure #105

Open bliq00 opened 8 years ago

bliq00 commented 8 years ago
  1. downloaded https://pypi.python.org/packages/source/M/MySQL-python/MySQL-python-1.2.5.zip#md5=654f75b302db6ed8dc5a898c625e030c
  2. unzipped file
  3. cd MySQL-python-1.2.5
  4. python setup.py bdist_rpm

resulted in this error

seems to stem from setup.cfg doc_files = README MANIFEST doc/*.txt

none of these 3 files exist, though README.md, MANIFEST.in, and doc/*.rst all do.

when I change the line to read

doc_files = README.md MANIFEST.in doc/*.rst

my command runs fine and spits out an rpm in dist/ as expected. Should this line be changed or is it "as designed"?