Render collection provenance graph top-down like other graphs.
[arvados.git] / sdk / python / setup.py
1 from setuptools import setup
2 import subprocess
3
4 minor_version = subprocess.check_output(
5     ['git', 'log', '--format=format:%ct.%h', '-n1', '.'])
6
7 setup(name='arvados-python-client',
8       version='0.1.' + minor_version,
9       description='Arvados client library',
10       url='https://arvados.org',
11       author='Arvados',
12       author_email='info@arvados.org',
13       license='Apache 2.0',
14       packages=['arvados'],
15       scripts=[
16         'bin/arv-get',
17         'bin/arv-put',
18         'bin/arv-mount',
19         ],
20       install_requires=[
21         'python-gflags',
22         'google-api-python-client',
23         'httplib2',
24         'urllib3',
25         'fusepy',
26         ],
27       zip_safe=False)