23791ca8af6be7e3515eaf084f35c0b6184474e3
[arvados.git] / services / fuse / setup.py
1 #!/usr/bin/env python
2
3 import os
4
5 from setuptools import setup, find_packages
6
7 README = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'README.rst')
8
9 setup(name='arvados_fuse',
10       version='0.1',
11       description='Arvados FUSE driver',
12       long_description=open(README).read(),
13       author='Arvados',
14       author_email='info@arvados.org',
15       url="https://arvados.org",
16       download_url="https://github.com/curoverse/arvados.git",
17       license='GNU Affero General Public License, version 3.0',
18       packages=['arvados_fuse'],
19       scripts=[
20         'bin/arv-mount'
21         ],
22       install_requires=[
23         'arvados-python-client',
24         'llfuse',
25         'python-daemon'
26         ],
27       test_suite='tests',
28       tests_require=['PyYAML'],
29       zip_safe=False)