Skip to content

Instantly share code, notes, and snippets.

@joe42
Last active August 29, 2015 14:10
Show Gist options
  • Save joe42/3f9e436af7cd3c9fb52f to your computer and use it in GitHub Desktop.
Save joe42/3f9e436af7cd3c9fb52f to your computer and use it in GitHub Desktop.
setup.py for CloudFusion, without gsutil dependency
'''
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