9e191fbb2416cbeff07f6417f563209e2e427d74
[arvados.git] / sdk / python / setup_fuse.py.src
1 from setuptools import setup
2 import distutils
3 import shutil
4
5 minor_version = '%%MINOR_VERSION%%'
6
7 # setup.py and setup_fuse.py both share the build/ directory (argh!) so
8 # make sure to delete it to avoid scooping up the wrong files.
9 shutil.rmtree('build')
10
11 setup(name='arvados-fuse-driver',
12       version='0.1.' + minor_version,
13       description='Arvados FUSE driver',
14       author='Arvados',
15       author_email='info@arvados.org',
16       url="https://arvados.org",
17       download_url="https://github.com/curoverse/arvados.git",
18       license='Apache 2.0',
19       packages=['arvados.fuse'],
20       scripts=[
21         'bin/arv-mount'
22         ],
23       install_requires=[
24         'arvados-python-client',
25         'llfuse'
26         ],
27       zip_safe=False)