10218: Save the container record as a json file and also write it on the logs.
[arvados.git] / sdk / pam / setup.py
old mode 100644 (file)
new mode 100755 (executable)
index 4942e2d..e1046ac
@@ -1,19 +1,22 @@
 #!/usr/bin/env python
 
+import glob
 import os
 import sys
 import setuptools.command.egg_info as egg_info_cmd
+import subprocess
 
 from setuptools import setup, find_packages
 
 SETUP_DIR = os.path.dirname(__file__) or '.'
 README = os.path.join(SETUP_DIR, 'README.rst')
 
+tagger = egg_info_cmd.egg_info
 try:
     import gittaggers
     tagger = gittaggers.EggInfoFromGit
-except ImportError:
-    tagger = egg_info_cmd.egg_info
+except (ImportError, OSError):
+    pass
 
 setup(name='arvados-pam',
       version='0.1',
@@ -29,12 +32,24 @@ setup(name='arvados-pam',
       ],
       scripts=[
       ],
+      data_files=[
+          ('lib/security', ['lib/libpam_arvados.py']),
+          ('share/pam-configs', ['pam-configs/arvados']),
+          ('share/doc/arvados-pam', ['LICENSE-2.0.txt', 'README.rst']),
+          ('share/doc/arvados-pam/examples', glob.glob('examples/*')),
+
+          # The arvados build scripts used to install data files to
+          # "/usr/data/*" but now install them to "/usr/*". Here, we
+          # install an extra copy in the old location so existing pam
+          # configs can still work. When old systems have had a chance
+          # to update to the new paths, this line can be removed.
+          ('data/lib/security', ['lib/libpam_arvados.py']),
+      ],
       install_requires=[
           'arvados-python-client>=0.1.20150801000000',
-          'pyyaml',
       ],
       test_suite='tests',
-      tests_require=['mock>=1.0', 'PyYAML'],
+      tests_require=['pbr<1.7.0', 'mock>=1.0', 'python-pam'],
       zip_safe=False,
       cmdclass={'egg_info': tagger},
       )