Skip to content
This repository has been archived by the owner on Dec 4, 2017. It is now read-only.

Commit

Permalink
Added pyfs-dropbox as requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmartinelli committed May 9, 2014
1 parent b93f664 commit 24b7c5f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cuckoodrive/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ def mb(value):
"""
Helper method to return value in MB as values in Bytes
"""
return kb(value) * 1025
return kb(value) * 1024
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@

install_requires = [
'fs',
'dropbox',
'pyfs-dropbox',
'docopt',
'pyinotify',
'blessings'
]

dependency_links= [
'https://github.com/lukasmartinelli/fs-dropbox/tarball/master#egg=pyfs-dropbox-0.3.3',
]


class PyTest(TestCommand):
def finalize_options(self):
Expand Down Expand Up @@ -46,6 +50,7 @@ def run_tests(self):
'test': tests_require
},
tests_require=tests_require,
dependency_links=dependency_links,
cmdclass={'test': PyTest},
license='GPLv2',
keywords = "fs dropbox",
Expand Down

0 comments on commit 24b7c5f

Please sign in to comment.