-
Notifications
You must be signed in to change notification settings - Fork 96
/
setup.py
executable file
·54 lines (48 loc) · 1.62 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
#!/usr/bin/env python
import os
import setuptools
import gdrivefs
_APP_PATH = os.path.dirname(gdrivefs.__file__)
with open(os.path.join(_APP_PATH, 'resources', 'README.rst')) as f:
long_description = f.read()
with open(os.path.join(_APP_PATH, 'resources', 'requirements.txt')) as f:
install_requires = [s.strip() for s in f.readlines()]
setuptools.setup(
name='gdrivefs',
version=gdrivefs.__version__,
description="A complete FUSE adapter for Google Drive.",
long_description=long_description,
long_description_content_type='text/x-rst',
classifiers=[
'Topic :: System :: Filesystems',
'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='[email protected]',
url='https://github.com/dsoprea/GDriveFS',
license='GPL 2',
packages=setuptools.find_packages(exclude=['tests']),
include_package_data=True,
package_data={
'gdrivefs': [
'resources/README.rst',
'resources/requirements.txt',
],
},
zip_safe=False,
install_requires=install_requires,
scripts=[
'gdrivefs/resources/scripts/gdfs',
'gdrivefs/resources/scripts/gdfstool',
'gdrivefs/resources/scripts/gdfsdumpentry',
],
)