Closed
Description
Installing current master with
~/projects/mETL$ pip install -e .
fails with this:
...
Downloading/unpacking xml2dict (from mETL==0.1.6.10dev)
Downloading XML2Dict-0.2.1.tar.gz
Storing download in cache at /home/kr/.pip/cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2FX%2FXML2Dict%2FXML2Dict-0.2.1.tar.gz
Running setup.py egg_info for package xml2dict
Traceback (most recent call last):
File "<string>", line 16, in <module>
File "/home/kr/.virtualenvs/metl/build/xml2dict/setup.py", line 14, in <module>
long_description=open('README.md').read())
IOError: [Errno 2] No such file or directory: 'README.md'
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 16, in <module>
File "/home/kr/.virtualenvs/metl/build/xml2dict/setup.py", line 14, in <module>
long_description=open('README.md').read())
IOError: [Errno 2] No such file or directory: 'README.md'
apparently it tries to install
https://pypi.python.org/pypi/XML2Dict/0.2.1
(https://github.com/mcspring/XML2Dict)
instead of
https://github.com/bfaludi/XML2Dict
Proposed solutions:
- directly link from setup.py to https://github.com/bfaludi/XML2Dict
- rename XML2Dict & release it to PyPI
- consider merging https://github.com/bfaludi/XML2Dict with https://github.com/mcspring/XML2Dict