X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/bc14c62ad1528dbddc26781c5cea6a7968c93f2e..98061a871b41881671c4744148ea98bbd08664ae:/services/fuse/setup.py diff --git a/services/fuse/setup.py b/services/fuse/setup.py index 0439d7d0ca..545b4bfa01 100644 --- a/services/fuse/setup.py +++ b/services/fuse/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (C) The Arvados Authors. All rights reserved. # # SPDX-License-Identifier: AGPL-3.0 @@ -33,7 +33,7 @@ setup(name='arvados_fuse', author='Arvados', author_email='info@arvados.org', url="https://arvados.org", - download_url="https://github.com/curoverse/arvados.git", + download_url="https://github.com/arvados/arvados.git", license='GNU Affero General Public License, version 3.0', packages=['arvados_fuse'], scripts=[ @@ -44,8 +44,8 @@ setup(name='arvados_fuse', ], install_requires=[ 'arvados-python-client{}'.format(pysdk_dep), - # llfuse 1.3.4 fails to install via pip - 'llfuse >=1.2, <1.3.4', + 'llfuse >= 1.3.6', + 'future', 'python-daemon', 'ciso8601 >= 2.0.0', 'setuptools', @@ -54,6 +54,10 @@ setup(name='arvados_fuse', extras_require={ ':python_version<"3"': ['pytz'], }, + classifiers=[ + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', + ], test_suite='tests', tests_require=['pbr<1.7.0', 'mock>=1.0', 'PyYAML'], zip_safe=False