Last active
August 29, 2015 14:10
setup.py for CloudFusion, without gsutil dependency
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Created on 30.08.2011 | |
@author: joe | |
''' | |
import setuptools | |
setuptools.setup( | |
name = "CloudFusion", | |
packages = setuptools.find_packages(), | |
include_package_data = True, | |
install_requires = ['requests', 'nose', 'simplejson', 'httplib2>=0.8', 'beautifulsoup4', 'argparse', 'ntplib', 'boto', 'sh', 'tinydav', 'PyDrive', 'profilehooks', 'psutil'], | |
version = "7.5.13", | |
description = "Filesystem interface to cloud storage services", | |
author = "Johannes Mueller", | |
author_email = "johannes.mueller1@mail.inf.tu-dresden.de", | |
url = "https://github.com/joe42/CloudFusion", | |
download_url = "https://github.com/joe42/CloudFusion/archive/master.zip", | |
entry_points={ | |
'console_scripts': [ | |
'cloudfusion = cloudfusion.main:main', | |
], | |
}, | |
keywords = ["encoding", "i18n", "xml"], | |
classifiers = [ | |
"Programming Language :: Python :: 2.6", | |
"Intended Audience :: Developers", | |
"Intended Audience :: End Users/Desktop", | |
"License :: Other/Proprietary License", | |
"Operating System :: Linux", | |
"Topic :: Software Development :: Libraries :: Python Modules", | |
"Topic :: System :: Archiving :: Backup", | |
"Topic :: System :: Filesystems", | |
], | |
long_description = """\ | |
CloudFusion lets you access your Dropbox or Sugarsync files from Linux like any file on your desktop. | |
""" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment