807327c3a511d91d0c99cd166e6c2808f11fe0ba
[arvados.git] / sdk / python / setup.py.src
1 from setuptools import setup
2 import shutil
3
4 minor_version = '%%MINOR_VERSION%%'
5
6 # setup.py and setup_fuse.py both share the build/ directory (argh!) so
7 # make sure to delete it to avoid scooping up the wrong files.
8 shutil.rmtree('build')
9
10 setup(name='arvados-python-client',
11       version='0.1.' + minor_version,
12       description='Arvados client library',
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='Apache 2.0',
18       packages=['arvados'],
19       scripts=[
20         'bin/arv-get',
21         'bin/arv-put',
22         'bin/arv-ls',
23         'bin/arv-normalize',
24         ],
25       install_requires=[
26         'python-gflags',
27         'google-api-python-client',
28         'httplib2',
29         'urllib3',
30         'ws4py'
31         ],
32       zip_safe=False)