levitsky / pyteomics

Pyteomics is a collection of lightweight and handy tools for Python that help to handle various sorts of proteomics data. Pyteomics provides a growing set of modules to facilitate the most common tasks in proteomics data analysis.
http://pyteomics.readthedocs.io
Apache License 2.0
105 stars 34 forks source link

INSTALL and VERSION are missing in the sdist on PyPI #7

Closed sunpoet closed 4 years ago

sunpoet commented 4 years ago

setup.py reads INSTALL and README for long_description. setup.py reads VERSION for version. But both files (INSTALL and VERSION) are missing in the sdist on PyPI.

Here's the error message of build failure:

Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "setup.py", line 10, in <module>
    with open('VERSION') as v:
FileNotFoundError: [Errno 2] No such file or directory: 'VERSION'
*** Error code 1

Stop.
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "setup.py", line 12, in <module>
    with open('README.rst') as r, open('INSTALL') as i:
FileNotFoundError: [Errno 2] No such file or directory: 'INSTALL'
*** Error code 1

Stop.
levitsky commented 4 years ago

Ouch, sorry about that. I'm on it.

sunpoet commented 4 years ago

Thanks!