Adds "--strip" option to arv-normalize to strip off authorization tokens.
[arvados.git] / sdk / python / setup.py
index 9ea420c71c97ee7ad1f710e7c92290bd9a86a08f..9f9c96284e3ae4a56ac587f917bfca6f72b811e1 100644 (file)
@@ -1,28 +1,27 @@
-from setuptools import setup
-import subprocess
-
-minor_version = subprocess.check_output(
-    ['git', 'log', '--format=format:%ct.%h', '-n1', '.'])
+from setuptools import setup, find_packages
 
 setup(name='arvados-python-client',
-      version='0.1.' + minor_version,
+      version='0.1',
       description='Arvados client library',
-      url='https://arvados.org',
       author='Arvados',
       author_email='info@arvados.org',
+      url="https://arvados.org",
+      download_url="https://github.com/curoverse/arvados.git",
       license='Apache 2.0',
-      packages=['arvados'],
+      packages=find_packages(),
       scripts=[
         'bin/arv-get',
-        'bin/arv-put',
-        'bin/arv-mount',
+        'bin/arv-keepdocker',
         'bin/arv-ls',
+        'bin/arv-normalize',
+        'bin/arv-put',
+        'bin/arv-ws',
         ],
       install_requires=[
         'python-gflags',
         'google-api-python-client',
         'httplib2',
         'urllib3',
-       'llfuse'
+        'ws4py'
         ],
       zip_safe=False)