13780: Update sprockets gem
[arvados.git] / services / fuse / setup.py
index c9ea98c456ecfb2fefce598d77f745c151345f08..5a1aa809146db0f4b5a89e32390877963302e9e6 100644 (file)
@@ -1,35 +1,28 @@
 #!/usr/bin/env python
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
 
+from __future__ import absolute_import
 import os
-import subprocess
-import time
+import sys
+import re
 
 from setuptools import setup, find_packages
-from setuptools.command.egg_info import egg_info
 
-SETUP_DIR = os.path.dirname(__file__)
+SETUP_DIR = os.path.dirname(__file__) or '.'
 README = os.path.join(SETUP_DIR, 'README.rst')
 
-class TagBuildWithCommit(egg_info):
-    """Tag the build with the sha1 and date of the last git commit.
-
-    If a build tag has already been set (e.g., "egg_info -b", building
-    from source package), leave it alone.
-    """
-    def tags(self):
-        if self.tag_build is None:
-            git_tags = subprocess.check_output(
-                ['git', 'log', '--first-parent', '--max-count=1',
-                 '--format=format:%ct %h', SETUP_DIR]).split()
-            assert len(git_tags) == 2
-            git_tags[0] = time.strftime(
-                '%Y%m%d%H%M%S', time.gmtime(int(git_tags[0])))
-            self.tag_build = '.{}.{}'.format(*git_tags)
-        return egg_info.tags(self)
+import arvados_version
+version = arvados_version.get_version(SETUP_DIR, "arvados_fuse")
 
+short_tests_only = False
+if '--short-tests-only' in sys.argv:
+    short_tests_only = True
+    sys.argv.remove('--short-tests-only')
 
 setup(name='arvados_fuse',
-      version='0.1',
+      version=version,
       description='Arvados FUSE driver',
       long_description=open(README).read(),
       author='Arvados',
@@ -41,13 +34,18 @@ setup(name='arvados_fuse',
       scripts=[
         'bin/arv-mount'
         ],
+      data_files=[
+          ('share/doc/arvados_fuse', ['agpl-3.0.txt', 'README.rst']),
+      ],
       install_requires=[
-        'arvados-python-client>=0.1.20141203150737.277b3c7',
-        'llfuse',
-        'python-daemon'
+        'arvados-python-client >= 0.1.20151118035730',
+        # llfuse 1.3.4 fails to install via pip
+        'llfuse >=1.2, <1.3.4',
+        'python-daemon',
+        'ciso8601 >=1.0.6, <2.0.0',
+        'setuptools'
         ],
       test_suite='tests',
-      tests_require=['PyYAML'],
-      zip_safe=False,
-      cmdclass={'egg_info': TagBuildWithCommit},
+      tests_require=['pbr<1.7.0', 'mock>=1.0', 'PyYAML'],
+      zip_safe=False
       )