rucio-clients 32.8.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rucio-clients might be problematic. Click here for more details.

Files changed (88) hide show
  1. rucio/__init__.py +18 -0
  2. rucio/alembicrevision.py +16 -0
  3. rucio/client/__init__.py +16 -0
  4. rucio/client/accountclient.py +413 -0
  5. rucio/client/accountlimitclient.py +155 -0
  6. rucio/client/baseclient.py +929 -0
  7. rucio/client/client.py +77 -0
  8. rucio/client/configclient.py +113 -0
  9. rucio/client/credentialclient.py +54 -0
  10. rucio/client/didclient.py +691 -0
  11. rucio/client/diracclient.py +48 -0
  12. rucio/client/downloadclient.py +1674 -0
  13. rucio/client/exportclient.py +44 -0
  14. rucio/client/fileclient.py +51 -0
  15. rucio/client/importclient.py +42 -0
  16. rucio/client/lifetimeclient.py +74 -0
  17. rucio/client/lockclient.py +99 -0
  18. rucio/client/metaclient.py +137 -0
  19. rucio/client/pingclient.py +45 -0
  20. rucio/client/replicaclient.py +444 -0
  21. rucio/client/requestclient.py +109 -0
  22. rucio/client/rseclient.py +664 -0
  23. rucio/client/ruleclient.py +287 -0
  24. rucio/client/scopeclient.py +88 -0
  25. rucio/client/subscriptionclient.py +161 -0
  26. rucio/client/touchclient.py +78 -0
  27. rucio/client/uploadclient.py +871 -0
  28. rucio/common/__init__.py +14 -0
  29. rucio/common/cache.py +74 -0
  30. rucio/common/config.py +796 -0
  31. rucio/common/constants.py +92 -0
  32. rucio/common/constraints.py +18 -0
  33. rucio/common/didtype.py +187 -0
  34. rucio/common/exception.py +1092 -0
  35. rucio/common/extra.py +37 -0
  36. rucio/common/logging.py +404 -0
  37. rucio/common/pcache.py +1387 -0
  38. rucio/common/policy.py +84 -0
  39. rucio/common/schema/__init__.py +143 -0
  40. rucio/common/schema/atlas.py +411 -0
  41. rucio/common/schema/belleii.py +406 -0
  42. rucio/common/schema/cms.py +478 -0
  43. rucio/common/schema/domatpc.py +399 -0
  44. rucio/common/schema/escape.py +424 -0
  45. rucio/common/schema/generic.py +431 -0
  46. rucio/common/schema/generic_multi_vo.py +410 -0
  47. rucio/common/schema/icecube.py +404 -0
  48. rucio/common/schema/lsst.py +423 -0
  49. rucio/common/stomp_utils.py +160 -0
  50. rucio/common/stopwatch.py +56 -0
  51. rucio/common/test_rucio_server.py +148 -0
  52. rucio/common/types.py +158 -0
  53. rucio/common/utils.py +1946 -0
  54. rucio/rse/__init__.py +97 -0
  55. rucio/rse/protocols/__init__.py +14 -0
  56. rucio/rse/protocols/cache.py +123 -0
  57. rucio/rse/protocols/dummy.py +112 -0
  58. rucio/rse/protocols/gfal.py +701 -0
  59. rucio/rse/protocols/globus.py +243 -0
  60. rucio/rse/protocols/gsiftp.py +93 -0
  61. rucio/rse/protocols/http_cache.py +83 -0
  62. rucio/rse/protocols/mock.py +124 -0
  63. rucio/rse/protocols/ngarc.py +210 -0
  64. rucio/rse/protocols/posix.py +251 -0
  65. rucio/rse/protocols/protocol.py +530 -0
  66. rucio/rse/protocols/rclone.py +365 -0
  67. rucio/rse/protocols/rfio.py +137 -0
  68. rucio/rse/protocols/srm.py +339 -0
  69. rucio/rse/protocols/ssh.py +414 -0
  70. rucio/rse/protocols/storm.py +207 -0
  71. rucio/rse/protocols/webdav.py +547 -0
  72. rucio/rse/protocols/xrootd.py +295 -0
  73. rucio/rse/rsemanager.py +752 -0
  74. rucio/vcsversion.py +11 -0
  75. rucio/version.py +46 -0
  76. rucio_clients-32.8.6.data/data/etc/rse-accounts.cfg.template +25 -0
  77. rucio_clients-32.8.6.data/data/etc/rucio.cfg.atlas.client.template +42 -0
  78. rucio_clients-32.8.6.data/data/etc/rucio.cfg.template +257 -0
  79. rucio_clients-32.8.6.data/data/requirements.txt +55 -0
  80. rucio_clients-32.8.6.data/data/rucio_client/merge_rucio_configs.py +147 -0
  81. rucio_clients-32.8.6.data/scripts/rucio +2540 -0
  82. rucio_clients-32.8.6.data/scripts/rucio-admin +2434 -0
  83. rucio_clients-32.8.6.dist-info/METADATA +50 -0
  84. rucio_clients-32.8.6.dist-info/RECORD +88 -0
  85. rucio_clients-32.8.6.dist-info/WHEEL +5 -0
  86. rucio_clients-32.8.6.dist-info/licenses/AUTHORS.rst +94 -0
  87. rucio_clients-32.8.6.dist-info/licenses/LICENSE +201 -0
  88. rucio_clients-32.8.6.dist-info/top_level.txt +1 -0
@@ -0,0 +1,50 @@
1
+ Metadata-Version: 2.4
2
+ Name: rucio-clients
3
+ Version: 32.8.6
4
+ Summary: Rucio Client Lite Package
5
+ Home-page: https://rucio.cern.ch/
6
+ Author: Rucio
7
+ Author-email: rucio-dev@cern.ch
8
+ License: Apache License, Version 2.0
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Intended Audience :: Information Technology
12
+ Classifier: Intended Audience :: System Administrators
13
+ Classifier: Operating System :: POSIX :: Linux
14
+ Classifier: Natural Language :: English
15
+ Classifier: Programming Language :: Python
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Requires-Python: >=3.9, <4
20
+ License-File: LICENSE
21
+ License-File: AUTHORS.rst
22
+ Requires-Dist: requests<=2.31.0,>=2.25.1
23
+ Requires-Dist: urllib3~=1.26.16
24
+ Requires-Dist: dogpile.cache~=1.2.2
25
+ Requires-Dist: tabulate~=0.9.0
26
+ Requires-Dist: jsonschema~=4.18.4
27
+ Provides-Extra: ssh
28
+ Requires-Dist: paramiko~=3.4.0; extra == "ssh"
29
+ Provides-Extra: kerberos
30
+ Requires-Dist: kerberos~=1.3.1; extra == "kerberos"
31
+ Requires-Dist: pykerberos~=1.2.4; extra == "kerberos"
32
+ Requires-Dist: requests-kerberos>=0.14.0; extra == "kerberos"
33
+ Provides-Extra: swift
34
+ Requires-Dist: python-swiftclient~=4.3.0; extra == "swift"
35
+ Provides-Extra: argcomplete
36
+ Requires-Dist: argcomplete~=3.1.1; extra == "argcomplete"
37
+ Provides-Extra: sftp
38
+ Requires-Dist: paramiko~=3.4.0; extra == "sftp"
39
+ Provides-Extra: dumper
40
+ Requires-Dist: python-magic~=0.4.27; extra == "dumper"
41
+ Dynamic: author
42
+ Dynamic: author-email
43
+ Dynamic: classifier
44
+ Dynamic: home-page
45
+ Dynamic: license
46
+ Dynamic: license-file
47
+ Dynamic: provides-extra
48
+ Dynamic: requires-dist
49
+ Dynamic: requires-python
50
+ Dynamic: summary
@@ -0,0 +1,88 @@
1
+ rucio/__init__.py,sha256=twGL9AvTrRZ-AV0UHKFGJgiwlsWJXZjkgjzQAnxPf1Q,684
2
+ rucio/alembicrevision.py,sha256=lU27AtVHfRcaWdRNg9o7eIBcwdS3FH5rEnRmdD7Nxuw,714
3
+ rucio/vcsversion.py,sha256=HZFpwJrCkjkYT3b34AD_-MNZ2bZ1dOepKbE_5HVcUss,248
4
+ rucio/version.py,sha256=YRZVnvS6f-tucZRnXsmGZX-WNVFkiQ9nHHyor-7-hSw,1573
5
+ rucio/client/__init__.py,sha256=55QYWLSEuixqgyKIVWJfirx960FLrzyEMFxOBchmom4,684
6
+ rucio/client/accountclient.py,sha256=ZVutas8r25IbwskD84SdRhYW_bdcK1QZFDJJaK_F6cA,16412
7
+ rucio/client/accountlimitclient.py,sha256=_6K_CmaDi8spFZ6LXViDUr26Tg1FeeCJ__JmTlQYMvk,6020
8
+ rucio/client/baseclient.py,sha256=4FLQFm6zdbzmXq4XIN7AVqDArTnrlK-wOw0B1KDveZo,47163
9
+ rucio/client/client.py,sha256=C81bWzgT7OGAa7PqVilfWSts1REJueY4AaX_yRXLW4o,3072
10
+ rucio/client/configclient.py,sha256=9FpXMHQBaBHK4FK2Y2LZ3zVqRCE-M7usLi4i3PMBsRs,4460
11
+ rucio/client/credentialclient.py,sha256=AlBjJJOUSb--oqCLjzhibhwgFsotVsP0NXwfRvOFnuM,2048
12
+ rucio/client/didclient.py,sha256=mrMQKMY3epi4sP6vTo4zN81cRBSCz-34wDFi4J8s1bg,28223
13
+ rucio/client/diracclient.py,sha256=4BhPhHgn__dxHNEp3kElnhHBFfUardcHpE2km5y3yyY,1991
14
+ rucio/client/downloadclient.py,sha256=Rq1z0fTZskV2yX-3HF6B41kmrRCdhyuz2xy18qQ0k3g,86127
15
+ rucio/client/exportclient.py,sha256=omWMAN7jtG1jF44Y--XcaTku_Xst-a8UNdtM5Oo6Rk0,1634
16
+ rucio/client/fileclient.py,sha256=cfh2wgmn81mjgDswd2Qtk-HIMfBvzPAiRjgoBJ2CCps,1669
17
+ rucio/client/importclient.py,sha256=0I3SQu7konqWUG7Jh-zIieoN_5cBHieyNO0UeE32GJA,1528
18
+ rucio/client/lifetimeclient.py,sha256=NqfWWWkL2_xEmjlbQg5d_JucAj5DP-vIUlvwOz5Gsrc,2881
19
+ rucio/client/lockclient.py,sha256=4NoPrPF0SBjN_pE0HXn1kftA21sh0uwjxvXsnA2-TWY,3973
20
+ rucio/client/metaclient.py,sha256=W7vlrk5PNteDdUFTqUX9sGMygMJlO9tfOcM-pui5Rf8,4722
21
+ rucio/client/pingclient.py,sha256=fR9h-H1UNzO2i97GruG650FaSA8sc05QixYNV5j7LF0,1414
22
+ rucio/client/replicaclient.py,sha256=fUvkSizRwp8B0GOM_VmnEQ__lGKy-_H7hNmmyZdUOuM,19343
23
+ rucio/client/requestclient.py,sha256=WXYDdLFuVJcaFxOJEij3nqbm3VpZHDxx97WsLog8OI0,4256
24
+ rucio/client/rseclient.py,sha256=-YvbhanIR70ddQUg2tboMbxWRaTwSab7PMmrGu0_4N4,27183
25
+ rucio/client/ruleclient.py,sha256=K-RMRHltJUU-wbJOerQynZEZCmF-dglqnWJ2u7l2xVY,12741
26
+ rucio/client/scopeclient.py,sha256=yAVD1VWEH5JGjblJ4Np6-THBoaz2rHUrUTkSvCyDfE8,3206
27
+ rucio/client/subscriptionclient.py,sha256=YgkSmQ1GxNav0rRwkuidDLSFybmQC9Hdqcq0tjxXUb4,7980
28
+ rucio/client/touchclient.py,sha256=_e7yLbtuaHfr9daf5nPjCc126eQ85Tny0iYG5hBtUuA,2701
29
+ rucio/client/uploadclient.py,sha256=yCDVw8Vor6DuXrHbI1yI5mEj8pJtPBQIKpFnHdFHMvs,46200
30
+ rucio/common/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
31
+ rucio/common/cache.py,sha256=qPnkBF2Gm5c5vBkW00LTnvjnfd6McNe6SPJD7tBf2fI,2297
32
+ rucio/common/config.py,sha256=r01dpOI2U0VfaFKmM8yAZGXB6upUslFK6IEPJrL_mCE,24306
33
+ rucio/common/constants.py,sha256=192U97S5VIXsa8fPHUNbhlT_iXV3QdxihivXRcb7sk4,3314
34
+ rucio/common/constraints.py,sha256=WiXEoU4scggR3KJzJsOJyAqLjZKrUWTsLwYf-sDO5F4,750
35
+ rucio/common/didtype.py,sha256=PinoKsiZJ6GsuUde4lcwx_tLUPtnXkVYN17hZ0zWO8s,6323
36
+ rucio/common/exception.py,sha256=j8a0BaSZDQr_WFCeY8lzh_-8LlsSXA22hr2rtKcyeyE,32369
37
+ rucio/common/extra.py,sha256=hmpUmgw9R_hreNJ_X11kCjeWq5rL6St9oaw3JiE8AsU,1422
38
+ rucio/common/logging.py,sha256=_gklh1XqTr41WfQamkyxHW7Lz53uLWh8Hcz2uqzsNNc,15070
39
+ rucio/common/pcache.py,sha256=yB4FjRlOC6R3fyHzrl826CkfA-cLR8CRyAFVMidzRCo,45324
40
+ rucio/common/policy.py,sha256=gew4oR3mwMWupKTgd4rZ7gKUK2YZGbgPIWgjtZ-O1Ig,3037
41
+ rucio/common/stomp_utils.py,sha256=JkPYNEa5F6J5QUhxW-YTMShwvhRE_Y2ukTtAQfB_TAY,5438
42
+ rucio/common/stopwatch.py,sha256=p9OD5zv1jbo5SRyRptpr0zGYbUskmACZfCiM3R1rhxY,1665
43
+ rucio/common/test_rucio_server.py,sha256=g3HRli56tX1TvI2_vQwzssY0fFhaYmfpg4TCY-MPSnI,4929
44
+ rucio/common/types.py,sha256=Dl2vwnDMlECIPaXAFSJM6ltQMD3TZdfDIqNX1ikBvms,4587
45
+ rucio/common/utils.py,sha256=Hy3blAwLE2wJ2_FYYVHdn3yby1Uir_Zle29wM_fUR5Q,69433
46
+ rucio/common/schema/__init__.py,sha256=LJifsVgQqykj9MnBlqt9X4J7Hd0V3p6QCojTFrYMMdQ,5176
47
+ rucio/common/schema/atlas.py,sha256=-4q7q7BEW8LR6Q88P6_Mfe_ZuVDGwB8AJw-Q2akrwRs,15613
48
+ rucio/common/schema/belleii.py,sha256=-dV4VCvFafNZEkObdPy27zSdjY14C5L1WUuc_wa2U6I,15430
49
+ rucio/common/schema/cms.py,sha256=QS6En5L4gOIGOgHGueCdE66RPMNKW9rnGrb5q3JH1q8,18547
50
+ rucio/common/schema/domatpc.py,sha256=vRewL2hp1qONX7Bud6C115Ei2D0XVz-WtDDNHLD5AH4,15011
51
+ rucio/common/schema/escape.py,sha256=iVD7s3uW836wmvm4UYJPXu8-lSKKWutJOA52uB5FVV4,15950
52
+ rucio/common/schema/generic.py,sha256=AMuDoz0L5t-rzBHhOBJt2rhLWAIxyJZdizgr1cMeYow,16265
53
+ rucio/common/schema/generic_multi_vo.py,sha256=qiqZhskbtcxQTqGZsrUJgAn7XgU05HaycZtDPzGKkOk,15492
54
+ rucio/common/schema/icecube.py,sha256=SBe9ctW_RA66JnhTVAFhZeJ0mk_QaeWbzstFLBd_2As,15301
55
+ rucio/common/schema/lsst.py,sha256=Zjow2SeOT2jFjllqXSPFkPpvzqd6Mi0aTsy94K8BYw8,15909
56
+ rucio/rse/__init__.py,sha256=yLUvu0yYEAs2UrGaPWlmbi-mGBDjjtHkMffWSEbh8BE,3327
57
+ rucio/rse/rsemanager.py,sha256=e9tVcdXaIHbAtmgp93OebIAClcJlcebTqBDGba-hxY0,37286
58
+ rucio/rse/protocols/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
59
+ rucio/rse/protocols/cache.py,sha256=kv1FZD15HnZ4xt9vi11GXRxg6NtD1i2o4ygJYWdQOwo,4627
60
+ rucio/rse/protocols/dummy.py,sha256=uGudzQkf2ScgNf8YwrZXng7EmPKnD6AQnkqMGFEIFpo,4249
61
+ rucio/rse/protocols/gfal.py,sha256=DEtP9YXHnu1S2IT-cocM_vAuHjyhfWYUoUZvjJd2nac,29035
62
+ rucio/rse/protocols/globus.py,sha256=goAOPx1o7ccZsDWcLYcdsFeKYYiGEkGJTSpEfagIV3s,9704
63
+ rucio/rse/protocols/gsiftp.py,sha256=6Wup-ETBONpQRBG7RGWYZrFWh_9f0rWCrDlJ6lShSKA,3433
64
+ rucio/rse/protocols/http_cache.py,sha256=zJwfBOedDAW_psqtZnhyrcj74HT8NlzC2tEwxNPqbLg,2999
65
+ rucio/rse/protocols/mock.py,sha256=UAfXrdM5FivSe4UFkfes3pr8RZjFjaV5fyiW6exU_z0,4519
66
+ rucio/rse/protocols/ngarc.py,sha256=2JFTAp4lptvCR36y9ErYGkUlc5jLWkgibCyYeU5sGnA,7248
67
+ rucio/rse/protocols/posix.py,sha256=5YthS746goCZ112AFcp6wWuu6wrOpgQfI0G9DHDHEZA,10418
68
+ rucio/rse/protocols/protocol.py,sha256=se7_SqVuYDek4RfKjr7MZdhF4Im6HKPjKgjqiG3JWjk,22818
69
+ rucio/rse/protocols/rclone.py,sha256=e93CN9RflX6hEAi6Og_eP9kML5mtY9rTJHr79fsYwYU,15276
70
+ rucio/rse/protocols/rfio.py,sha256=Gnvwtn7nwyI6-VVeAWtrFSer5mN4ACMiJ7hNU8i8CDA,5523
71
+ rucio/rse/protocols/srm.py,sha256=ttp5TsYjIb1mD2iZkwaN5NwkH6yQideVr3hXmOJmIA4,14671
72
+ rucio/rse/protocols/ssh.py,sha256=bibRq8A6w0CCQ-XdJJz28v5ALXPXux9zHU2vv9pjaio,17487
73
+ rucio/rse/protocols/storm.py,sha256=-qcQU9w2cwYIJiP6xkMGuUsye1rnssmyZONIjqgTwtw,8151
74
+ rucio/rse/protocols/webdav.py,sha256=ID9nJo88p2ng4M4OGY77ZKgG2x63bME2jYLUeI4x23E,22206
75
+ rucio/rse/protocols/xrootd.py,sha256=PPothpJhO2d7N_8vjFKrT6pR3D_kYDT_VjOxlam5vRQ,12489
76
+ rucio_clients-32.8.6.data/data/requirements.txt,sha256=FXk7izEskAPlNWZWNCqAKhAp7JSTfLpXzbxudpo7koc,4837
77
+ rucio_clients-32.8.6.data/data/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
78
+ rucio_clients-32.8.6.data/data/etc/rucio.cfg.atlas.client.template,sha256=O24QKo-0OX4Clj7Bp2Bv9W-b0NtLkyYg3jNNpz_alr0,1311
79
+ rucio_clients-32.8.6.data/data/etc/rucio.cfg.template,sha256=z1s8B-_C-gKsPM8ZtCOZDTKLd0Emj8IYgLBz4B9dCw4,8534
80
+ rucio_clients-32.8.6.data/data/rucio_client/merge_rucio_configs.py,sha256=B0JElUmPq134G8XcQTdOwuMXcPKmH75_6FbEANHiMUU,6189
81
+ rucio_clients-32.8.6.data/scripts/rucio,sha256=rF0ktQB8HN0uI_9Sb8yVLLWYWwpX-sWquGyZ67gUwOA,128842
82
+ rucio_clients-32.8.6.data/scripts/rucio-admin,sha256=q7Dt6xfthr77GFRfEJTpzHlt3kcvDrnYEMCi3z2qTww,133717
83
+ rucio_clients-32.8.6.dist-info/licenses/AUTHORS.rst,sha256=jQRZwvXp-5rhnfCyoeeNtd2uc3HqO2nvWg1zbupVkHM,4428
84
+ rucio_clients-32.8.6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
85
+ rucio_clients-32.8.6.dist-info/METADATA,sha256=PpwbT3aI6XiOKgse7HBHOXkfnj3OfzC6aWocj40U_Fg,1747
86
+ rucio_clients-32.8.6.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
87
+ rucio_clients-32.8.6.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
88
+ rucio_clients-32.8.6.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.7.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,94 @@
1
+ Individual contributors to the source code
2
+ ------------------------------------------
3
+ - Mario Lassnig <mario.lassnig@cern.ch>, 2012-2019
4
+ - Vincent Garonne <vgaronne@gmail.com>, 2012-2019
5
+ - Angelos Molfetas <Angelos.Molfetas@cern.ch>, 2012
6
+ - Martin Barisits <martin.barisits@cern.ch>, 2012-2019
7
+ - Thomas Beermann <thomas.beermann@cern.ch>, 2012-2019
8
+ - Ralph Vigne <ralph.vigne@cern.ch>, 2012-2016
9
+ - Graeme Stewart <graeme.andrew.stewart@cern.ch>, 2012
10
+ - Yun-Pin Sun <winter0128@gmail.com>, 2012-2013
11
+ - Cedric Serfon <cedric.serfon@cern.ch>, 2012-2020
12
+ - Luis Rodrigues <lfrodrigues@gmail.com>, 2013
13
+ - WeiJen Chang <e4523744@gmail.com>, 2013-2014
14
+ - Gancho Dimitrov <gancho.dimitrov@cern.ch>, 2013
15
+ - Wen Guan <wguan.icedew@gmail.com>, 2014-2017
16
+ - David Cameron <d.g.cameron@gmail.com>, 2014-2016
17
+ - Tomáš Kouba <tomas.kouba@cern.ch>, 2014-2015
18
+ - Cheng-Hsi Chao <cheng-hsi.chao@cern.ch>, 2014
19
+ - Evangelia Liotiri <evangelia.liotiri@cern.ch>, 2014-2015
20
+ - Joaquín Bogado <jbogado@linti.unlp.edu.ar>, 2014-2018
21
+ - Fernando López <fernando.e.lopez@gmail.com>, 2015-2016
22
+ - Sylvain Blunier <sylvain.blunier@cern.ch>, 2016
23
+ - Tomas Javurek <tomas.javurek@cern.ch>, 2016-2019
24
+ - Brian Bockelman <bbockelm@cse.unl.edu>, 2016-2018
25
+ - Tobias Wegner <twegner@cern.ch>, 2017-2019
26
+ - Frank Berghaus <frank.berghaus@cern.ch>, 2017
27
+ - Vitjan Zavrtanik <vitjan.zavrtanik@cern.ch>, 2017
28
+ - Stefan Prenner <stefan.prenner@cern.ch>, 2017-2018
29
+ - Nicolo Magini <Nicolo.Magini@cern.ch>, 2017-2018
30
+ - Oliver Freyermuth <o.freyermuth@googlemail.com>, 2017
31
+ - Eric Vaandering <ericvaandering@gmail.com>, 2018
32
+ - Dimitrios Christidis <dimitrios.christidis@cern.ch>, 2018-2019
33
+ - Igor Mandrichenko <ivm@fnal.gov>, 2018
34
+ - Shreyansh Khajanchi <shreyansh_k@live.com>, 2018
35
+ - Robert Illingworth <illingwo@fnal.gov>, 2018
36
+ - Hannes Hansen <hannes.jakob.hansen@cern.ch>, 2018-2019
37
+ - Gabriele Gaetano Fronzé <gabriele.fronze@to.infn.it>, 2018-2021
38
+ - James Perry <j.perry@epcc.ed.ac.uk>, 2019
39
+ - Vivek Nigam <viveknigam.nigam3@gmail.com>, 2019 - 2020
40
+ - Kaustubh Hiware <hiwarekaustubh@gmail.com>, 2019
41
+ - Florido Paganelli <florido.paganelli@hep.lu.se>, 2019
42
+ - Boris Bauermeister <Boris.Bauermeister@gmail.com> 2019
43
+ - Ruturaj Gujar <ruturaj.gujar23@gmail.com> 2019
44
+ - Andrew Lister <andrew.lister@stfc.ac.uk>, 2019
45
+ - Aristeidis Fkiaras <aristeidis.fkiaras@cern.ch>, 2019
46
+ - Matt Snyder <msnyder@bnl.gov>, 2019
47
+ - Brandon White <bjwhite@fnal.gov> 2019-2023
48
+ - Benedikt Ziemons <benedikt.ziemons@cern.ch>, 2020
49
+ - Muhammad Aditya Hilmy <mhilmy@hey.com>, 2020
50
+ - Eli Chadwick <eli.chadwick@stfc.ac.uk>, 2020
51
+ - Patrick Austin <patrick.austin@stfc.ac.uk>, 2020
52
+ - Rob Barnsley <R.Barnsley@skatelescope.org>, 2020
53
+ - Alan Malta Rodrigues <alan.malta@cern.ch>, 2020
54
+ - Mayank Sharma <mayank.sharma@cern.ch>, 2020
55
+ - Ian Johnson, <ian.johnson@stfc.ac.uk>, 2021
56
+ - Radu Carpa <radu.carpa@cern.ch>, 2021
57
+ - Dhruv Sondhi <dhruvsondhi05@gmail.com>, 2021
58
+ - Simon Fayer <simon.fayer05@imperial.ac.uk>, 2021
59
+ - Ilija Vukotic <ivukotic@uchicago.edu>, 2020-2021
60
+ - David Población Criado <david.poblacion.criado@cern.ch>, 2021
61
+ - Nick Smith <nick.smith@cern.ch>, 2021
62
+ - Rizart Dona <rizart.dona@cern.ch>, 2021
63
+ - Rakshita Varadarajan <rakshitajps@gmail.com>, 2021
64
+ - Fabio Luchetti <fabio.luchetti@cern.ch>, 2021
65
+ - Stefan Piperov <stefan.piperov@cern.ch>, 2021
66
+ - Jensen Zhang <hack@jensen-zhang.site>, 2022
67
+ - Aksel Lunde Aase <aksel.lunde.aase@gmail.com>, 2022
68
+
69
+ Organisations employing contributors
70
+ ------------------------------------
71
+ - European Organisation for Nuclear Research (Switzerland)
72
+ - University of Oslo (Norway)
73
+ - University of Wisconsin Madison (USA)
74
+ - National University of La Plata (Argentina)
75
+ - Albert Ludwigs Universität Freiburg (Germany)
76
+ - University of Nebraska Lincoln (USA)
77
+ - Bergische Universität Wuppertal (Germany)
78
+ - University of Victoria (Canada)
79
+ - INFN e Universita Genova (Italy)
80
+ - University of Bonn (Germany)
81
+ - Fermi National Accelerator Laboratory (USA)
82
+ - Leopold-Franzens Universität Innsbruck (Austria)
83
+ - Academia Sinica (Taiwan)
84
+ - University of Edinburgh (UK)
85
+ - Birla Institute of Technology, Mesra (India)
86
+ - Indian Institute of Technology, Kharagpur (India)
87
+ - Stockholm University, Stockholm (Sweden)
88
+ - Dwarkadas J. Sanghvi College of Engineering (India)
89
+ - Science and Technology Facilities Council (UK)
90
+ - Brookhaven National Laboratory (USA)
91
+ - Institut Teknologi Bandung (Indonesia)
92
+ - Imperial College London (UK)
93
+ - University of Chicago (USA)
94
+ - Purdue University (USA)
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1 @@
1
+ rucio