forked from abcdbz/GDriveFS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·67 lines (59 loc) · 2.06 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python2.7
from setuptools import find_packages, setup
from setuptools.command.install import install
from sys import exit
def pre_install():
# TODO: Ensure FUSE.
return True
def post_install():
pass
class custom_install(install):
def run(self):
pre_install()
install.run(self)
post_install()
version = '0.13.5'
setup(name='gdrivefs',
version=version,
description="A complete FUSE adapter for Google Drive.",
long_description="""\
A complete FUSE adapter for Google Drive. See Github for more information.""",
classifiers=['Topic :: System :: Filesystems',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Utilities',
],
keywords='google-drive google drive fuse filesystem',
author='Dustin Oprea',
author_email='myselfasunder@gmail.com',
url='https://github.com/dsoprea/GDriveFS',
license='GPL 2',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'google_appengine',
# TODO: There's an issue when this is listed as a requirement here. It can be
# installed separately, easily. The repository version is old, anyways.
# We advise that people download and install it manually.
# 'google_api_python_client',
'httplib2',
'python-dateutil',
'fusepy',
],
entry_points="""
# -*- Entry points: -*-
""",
cmdclass={'install': custom_install
},
scripts=['tools/gdfs',
'tools/gdfstool',
'tools/gdfsuninstall'],
)