Crystal03 / google-docs-fs

Automatically exported from code.google.com/p/google-docs-fs
GNU General Public License v2.0
0 stars 0 forks source link

setup.py requirements incorrect #53

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Obtain latest code from mercurial
2. Run "python setup.py install"

What is the expected output? What do you see instead?
Install sucessfully, but the build fails for failed depenedencies.

What version of the product are you using? On what operating system?
Latest from repo as of right now.

Please provide any additional information below.
I think the requirements have typos/mistakes. I changed the line like this and 
it installed fine:

hdara-ltm1:google-docs-fs hdara$ hg diff setup.py
diff -r 4ecdb3d2f8a4 setup.py
--- a/setup.py  Fri Sep 24 22:53:55 2010 +0100
+++ b/setup.py  Tue Aug 02 23:34:37 2011 -0700
@@ -15,5 +15,5 @@
     url='http://code.google.com/p/google-docs-fs/',
     py_modules=['googledocsfs.gFile','googledocsfs.gNet'],
     scripts=['gmount','gumount','gmount.py'],
-    install_requires=['python-fuse>=0.2','python-gdata>=2.0.0']
+    install_requires=['fuse-python>=0.2','gdata>=2.0.0']
     )

Original issue reported on code.google.com by harid...@gmail.com on 3 Aug 2011 at 6:35