peterbe / django-mongokit

Bridging Django to MongoDB with the MongoKit ODM (Object Document Mapper)
Other
122 stars 20 forks source link

pip install fails #4

Closed ghost closed 13 years ago

ghost commented 13 years ago

Using version 0.2.0 (newest of versions: 0.2.0, 0.1.7, 0.1.6, 0.1.5, 0.1.4, 0.1.2, 0.1.1, 0.1) Downloading django-mongokit-0.2.0.tar.gz Downloading from URL http://pypi.python.org/packages/source/d/django-mongokit/django-mongokit-0.2.0.tar.gz#md5=9e377a638c51552a1fe4c4f405b67f60 (from http://pypi.python.org/simple/django-mongokit/) Running setup.py egg_info for package django-mongokit running egg_info creating pip-egg-info/django_mongokit.egg-info writing pip-egg-info/django_mongokit.egg-info/PKG-INFO writing top-level names to pip-egg-info/django_mongokit.egg-info/top_level.txt writing dependency_links to pip-egg-info/django_mongokit.egg-info/dependency_links.txt writing manifest file 'pip-egg-info/django_mongokit.egg-info/SOURCES.txt' warning: manifest_maker: standard file '-c' not found error: package directory 'django_mongokit/forms' does not exist Complete output from command python setup.py egg_info: running egg_info

creating pip-egg-info/django_mongokit.egg-info

writing pip-egg-info/django_mongokit.egg-info/PKG-INFO

writing top-level names to pip-egg-info/django_mongokit.egg-info/top_level.txt

writing dependency_links to pip-egg-info/django_mongokit.egg-info/dependency_links.txt

writing manifest file 'pip-egg-info/django_mongokit.egg-info/SOURCES.txt'

warning: manifest_maker: standard file '-c' not found

error: package directory 'django_mongokit/forms' does not exist


Command python setup.py egg_info failed with error code 1 Exception information: Traceback (most recent call last): File "/home/amirouche/Bureau/projects/DukliMessaging/lib/python2.6/site-packages/pip-0.8.3-py2.6.egg/pip/basecommand.py", line 127, in main self.run(options, args) File "/home/amirouche/Bureau/projects/DukliMessaging/lib/python2.6/site-packages/pip-0.8.3-py2.6.egg/pip/commands/install.py", line 223, in run requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle) File "/home/amirouche/Bureau/projects/DukliMessaging/lib/python2.6/site-packages/pip-0.8.3-py2.6.egg/pip/req.py", line 973, in prepare_files req_to_install.run_egg_info() File "/home/amirouche/Bureau/projects/DukliMessaging/lib/python2.6/site-packages/pip-0.8.3-py2.6.egg/pip/req.py", line 219, in run_egg_info command_desc='python setup.py egg_info') File "/home/amirouche/Bureau/projects/DukliMessaging/lib/python2.6/site-packages/pip-0.8.3-py2.6.egg/pip/init.py", line 249, in call_subprocess % (command_desc, proc.returncode)) InstallationError: Command python setup.py egg_info failed with error code 1

peterbe commented 13 years ago

So it's because of the forms directory. I'll look into it.

peterbe commented 13 years ago

Fixed. I didn't include the forms file in the MANIFEST.

ghost commented 13 years ago

Indeed it works, thanks for the fast response