X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b6f73f7acffa9b2f37c78826ff6cee89987a7edc..a2c147e469bc4ccc0e788f2e72b2d94aa81ba368:/sdk/python/setup.py diff --git a/sdk/python/setup.py b/sdk/python/setup.py index 754d89bdad..17f9cb43a0 100644 --- a/sdk/python/setup.py +++ b/sdk/python/setup.py @@ -1,32 +1,19 @@ #!/usr/bin/env python import os -import subprocess -import time +import sys +import setuptools.command.egg_info as egg_info_cmd 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) - +try: + import gittaggers + tagger = gittaggers.EggInfoFromGit +except ImportError: + tagger = egg_info_cmd.egg_info setup(name='arvados-python-client', version='0.1', @@ -39,25 +26,30 @@ setup(name='arvados-python-client', license='Apache 2.0', packages=find_packages(), scripts=[ - 'bin/arv-copy', - 'bin/arv-get', - 'bin/arv-keepdocker', - 'bin/arv-ls', - 'bin/arv-normalize', - 'bin/arv-put', - 'bin/arv-run', - 'bin/arv-ws' - ], + 'bin/arv-copy', + 'bin/arv-get', + 'bin/arv-keepdocker', + 'bin/arv-ls', + 'bin/arv-normalize', + 'bin/arv-put', + 'bin/arv-run', + 'bin/arv-ws' + ], + data_files=[ + ('share/doc/arvados-python-client', ['LICENSE-2.0.txt', 'README.rst']), + ], install_requires=[ - 'python-gflags', - 'google-api-python-client', - 'httplib2', - 'requests>=2.4', - 'urllib3', - 'ws4py' - ], + 'google-api-python-client==1.4.2', + 'oauth2client >=1.4.6, <2', + 'pyasn1-modules==0.0.5', + 'ciso8601', + 'httplib2', + 'pycurl >=7.19.5.1, <7.21.5', + 'python-gflags<3.0', + 'ws4py' + ], test_suite='tests', - tests_require=['mock>=1.0', 'PyYAML'], + tests_require=['pbr<1.7.0', 'mock>=1.0', 'PyYAML'], zip_safe=False, - cmdclass={'egg_info': TagBuildWithCommit}, + cmdclass={'egg_info': tagger}, )