rucio-clients 35.8.2__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.
Files changed (88) hide show
  1. rucio/__init__.py +17 -0
  2. rucio/alembicrevision.py +15 -0
  3. rucio/client/__init__.py +15 -0
  4. rucio/client/accountclient.py +433 -0
  5. rucio/client/accountlimitclient.py +183 -0
  6. rucio/client/baseclient.py +974 -0
  7. rucio/client/client.py +76 -0
  8. rucio/client/configclient.py +126 -0
  9. rucio/client/credentialclient.py +59 -0
  10. rucio/client/didclient.py +866 -0
  11. rucio/client/diracclient.py +56 -0
  12. rucio/client/downloadclient.py +1785 -0
  13. rucio/client/exportclient.py +44 -0
  14. rucio/client/fileclient.py +50 -0
  15. rucio/client/importclient.py +42 -0
  16. rucio/client/lifetimeclient.py +90 -0
  17. rucio/client/lockclient.py +109 -0
  18. rucio/client/metaconventionsclient.py +140 -0
  19. rucio/client/pingclient.py +44 -0
  20. rucio/client/replicaclient.py +454 -0
  21. rucio/client/requestclient.py +125 -0
  22. rucio/client/rseclient.py +746 -0
  23. rucio/client/ruleclient.py +294 -0
  24. rucio/client/scopeclient.py +90 -0
  25. rucio/client/subscriptionclient.py +173 -0
  26. rucio/client/touchclient.py +82 -0
  27. rucio/client/uploadclient.py +955 -0
  28. rucio/common/__init__.py +13 -0
  29. rucio/common/cache.py +74 -0
  30. rucio/common/config.py +801 -0
  31. rucio/common/constants.py +159 -0
  32. rucio/common/constraints.py +17 -0
  33. rucio/common/didtype.py +189 -0
  34. rucio/common/exception.py +1151 -0
  35. rucio/common/extra.py +36 -0
  36. rucio/common/logging.py +420 -0
  37. rucio/common/pcache.py +1408 -0
  38. rucio/common/plugins.py +153 -0
  39. rucio/common/policy.py +84 -0
  40. rucio/common/schema/__init__.py +150 -0
  41. rucio/common/schema/atlas.py +413 -0
  42. rucio/common/schema/belleii.py +408 -0
  43. rucio/common/schema/domatpc.py +401 -0
  44. rucio/common/schema/escape.py +426 -0
  45. rucio/common/schema/generic.py +433 -0
  46. rucio/common/schema/generic_multi_vo.py +412 -0
  47. rucio/common/schema/icecube.py +406 -0
  48. rucio/common/stomp_utils.py +159 -0
  49. rucio/common/stopwatch.py +55 -0
  50. rucio/common/test_rucio_server.py +148 -0
  51. rucio/common/types.py +403 -0
  52. rucio/common/utils.py +2238 -0
  53. rucio/rse/__init__.py +96 -0
  54. rucio/rse/protocols/__init__.py +13 -0
  55. rucio/rse/protocols/bittorrent.py +184 -0
  56. rucio/rse/protocols/cache.py +122 -0
  57. rucio/rse/protocols/dummy.py +111 -0
  58. rucio/rse/protocols/gfal.py +703 -0
  59. rucio/rse/protocols/globus.py +243 -0
  60. rucio/rse/protocols/gsiftp.py +92 -0
  61. rucio/rse/protocols/http_cache.py +82 -0
  62. rucio/rse/protocols/mock.py +123 -0
  63. rucio/rse/protocols/ngarc.py +209 -0
  64. rucio/rse/protocols/posix.py +250 -0
  65. rucio/rse/protocols/protocol.py +594 -0
  66. rucio/rse/protocols/rclone.py +364 -0
  67. rucio/rse/protocols/rfio.py +136 -0
  68. rucio/rse/protocols/srm.py +338 -0
  69. rucio/rse/protocols/ssh.py +413 -0
  70. rucio/rse/protocols/storm.py +206 -0
  71. rucio/rse/protocols/webdav.py +550 -0
  72. rucio/rse/protocols/xrootd.py +301 -0
  73. rucio/rse/rsemanager.py +764 -0
  74. rucio/vcsversion.py +11 -0
  75. rucio/version.py +38 -0
  76. rucio_clients-35.8.2.data/data/etc/rse-accounts.cfg.template +25 -0
  77. rucio_clients-35.8.2.data/data/etc/rucio.cfg.atlas.client.template +42 -0
  78. rucio_clients-35.8.2.data/data/etc/rucio.cfg.template +257 -0
  79. rucio_clients-35.8.2.data/data/requirements.client.txt +15 -0
  80. rucio_clients-35.8.2.data/data/rucio_client/merge_rucio_configs.py +144 -0
  81. rucio_clients-35.8.2.data/scripts/rucio +2542 -0
  82. rucio_clients-35.8.2.data/scripts/rucio-admin +2447 -0
  83. rucio_clients-35.8.2.dist-info/METADATA +50 -0
  84. rucio_clients-35.8.2.dist-info/RECORD +88 -0
  85. rucio_clients-35.8.2.dist-info/WHEEL +5 -0
  86. rucio_clients-35.8.2.dist-info/licenses/AUTHORS.rst +97 -0
  87. rucio_clients-35.8.2.dist-info/licenses/LICENSE +201 -0
  88. rucio_clients-35.8.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,50 @@
1
+ Metadata-Version: 2.4
2
+ Name: rucio-clients
3
+ Version: 35.8.2
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.32.2
23
+ Requires-Dist: urllib3>=1.26.18
24
+ Requires-Dist: dogpile-cache>=1.2.2
25
+ Requires-Dist: tabulate>=0.9.0
26
+ Requires-Dist: jsonschema>=4.20.0
27
+ Provides-Extra: ssh
28
+ Requires-Dist: paramiko>=3.4.1; 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.4.0; extra == "swift"
35
+ Provides-Extra: argcomplete
36
+ Requires-Dist: argcomplete>=3.1.6; extra == "argcomplete"
37
+ Provides-Extra: sftp
38
+ Requires-Dist: paramiko>=3.4.1; 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=Y7cPPlHVQPFyN8bSPFC0W3WViEdONr5g_qwBub5rufE,660
2
+ rucio/alembicrevision.py,sha256=cvH9DsDzl7pCXmg1g_sfQ5rDJttSk8ULj0ojSdrbFzg,690
3
+ rucio/vcsversion.py,sha256=hzzrmd8gzGTQsqSxr_0FoFKSfIW1F1Dr-RgCGhwW86w,248
4
+ rucio/version.py,sha256=k9Jc0DNwCHLS1rwtNo3qOJX0WFkL-kexdtBCKFabQ4A,1325
5
+ rucio/client/__init__.py,sha256=0-jkSlrJf-eqbN4swA5a07eaWd6_6JXPQPLXMs4A3iI,660
6
+ rucio/client/accountclient.py,sha256=o8qUg-NZc_PwLk_lMevaBEdM0LdvaJ4_qGmNqgd2dkI,17370
7
+ rucio/client/accountlimitclient.py,sha256=RcA9ZjUz3uhpYlBROi9j97_0Fxd9TlmDaWv_3I14s_g,6479
8
+ rucio/client/baseclient.py,sha256=stDjxUGdctu8GvTZu-I2cNIvNRMawvFYCb5KjwUGhBc,49233
9
+ rucio/client/client.py,sha256=LtvhwdXEBvBmQUbkZP7iwun4Ttd-Qnv2VPzj-PNY8L4,3079
10
+ rucio/client/configclient.py,sha256=sCnzWOnGSYWktYud-OUnc8qVaDMiSq9I7N4uuqcTz0Y,4685
11
+ rucio/client/credentialclient.py,sha256=MCnuL966HPJwgxNEnk597SO7xwPEhnAIdEOeH75SOUU,2101
12
+ rucio/client/didclient.py,sha256=80caRhYLAObPZR7o7FvlaJil4su0snZFmv53Un3ZU5A,32588
13
+ rucio/client/diracclient.py,sha256=40XTub2kwdV4LMFOcJkly-y_622wkGlR6vefTvbULRk,2397
14
+ rucio/client/downloadclient.py,sha256=oFoz_P4IMmHLq1z0eBGpxfn-wGDlNQ4hs02gEfJoQWc,89417
15
+ rucio/client/exportclient.py,sha256=DJFJkBPYUmLTgHv6B5DAElIMhkpPl0Sz6OpTNM7WA50,1625
16
+ rucio/client/fileclient.py,sha256=NICwXZdIKIySYMIiiqz9nR8sQTiLjcWdk0RzAQaOD0U,1667
17
+ rucio/client/importclient.py,sha256=YMFZH79svGbl-riRSx4jeNGq7TVPiT57A_rcVT8qAGk,1516
18
+ rucio/client/lifetimeclient.py,sha256=JHeuOE81Nj7N_iwqDfpJzZwat6nMgSA_jNUEqaqzEU4,3322
19
+ rucio/client/lockclient.py,sha256=Fc-BVQV_nAHM8YmxN1UFqHutEl-E8uxnSlsjH7Uxjj4,4276
20
+ rucio/client/metaconventionsclient.py,sha256=1Wwh3y45zhr9X05MYGq5Gph85vIUKvWDJjRYvQpCSLw,5195
21
+ rucio/client/pingclient.py,sha256=rwb02jpKJnEioZ-lQRf04Drp_sRtXC36WsubNKtEvpg,1390
22
+ rucio/client/replicaclient.py,sha256=XQzwCVqvdAT-BaNW5o7KrF_7UGzInxC174RkqV6GWC8,19518
23
+ rucio/client/requestclient.py,sha256=L4meNVrb9jOuQjhALtBMgW0HKioMGfYlph4zEdjpreM,4615
24
+ rucio/client/rseclient.py,sha256=71iCLmgyUw3B5TMca0J8Gg8SW4hnPTcgANXWhpccJ8E,29695
25
+ rucio/client/ruleclient.py,sha256=lppOYILWLOPBIcq8Qv-8lp9iTVjLGUMYFto3PYrGwYY,13137
26
+ rucio/client/scopeclient.py,sha256=CfJyM86I8BKfXLnbUOD_KjxuqMD5B0I8AQLiuNKTjag,3238
27
+ rucio/client/subscriptionclient.py,sha256=GgSFlube82Xv87GQ58ouWthjxsbLalWcXQywrNmh_M4,8207
28
+ rucio/client/touchclient.py,sha256=i_cvIAbwH9MLF2hE1o_I5w2M9jACykEFGdyypHmyBlA,2759
29
+ rucio/client/uploadclient.py,sha256=1VqI-0Rzmr_gGgs030DNGuxxy2NGwxDCrVL8yo3mnss,49564
30
+ rucio/common/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
31
+ rucio/common/cache.py,sha256=cnCHNz3VOYLmKbg1RkG-n_rqb-VnuRa_b7y3aXSkqNI,2301
32
+ rucio/common/config.py,sha256=mgHqLhso6bXqLVrkW5OwQp-WX3Pyc4Wt3Ir5CrL8dGU,24764
33
+ rucio/common/constants.py,sha256=RWRl3bYGV9PJYOkxCxwOLRmW2LzLmUs2oaw5v0uJ3JI,5997
34
+ rucio/common/constraints.py,sha256=MrdiAwKyoaZGfspUWX_53XS2790nXMSMg1JYmTO_ciQ,726
35
+ rucio/common/didtype.py,sha256=t08FaxLXx4G3FqjIZQp4zhZt7rPugW0qApNrZImXxes,6545
36
+ rucio/common/exception.py,sha256=OUPJB-9GtWlFlSvm7Z8YTVQE4SFp_EuzrCPSKvDhEwM,32446
37
+ rucio/common/extra.py,sha256=G1jZYovcYOPXhZTxJFGeNFoCREmKUIxXkuaIE1fO9pw,1398
38
+ rucio/common/logging.py,sha256=YsNDES5md8KxzC3sITH-Za0nJzr2Q-qmfvvRvnnIMCw,15818
39
+ rucio/common/pcache.py,sha256=0UefrcSNcEXK7FAAhyg0s2felnAhSIFNZ0UZTRiEjlo,47008
40
+ rucio/common/plugins.py,sha256=rH7_MOkckt_OWCg6El83ytOXetv26_sP-Zs8AAn_vDU,6286
41
+ rucio/common/policy.py,sha256=DvUV0YBuICgz3TiVEY1TQxoXGXdYcwtVTwdq3kKMQ1E,3085
42
+ rucio/common/stomp_utils.py,sha256=3GTiRTJ0roe5OX_wgkVwOJYAIhGgYbhiROHc2M8LQT8,5414
43
+ rucio/common/stopwatch.py,sha256=_9zxoLjr8A0wUDJsljK4vZNDCI-dIOgpcxXiCNVJcHU,1641
44
+ rucio/common/test_rucio_server.py,sha256=r35Pm1DMAHMMhQUG1GMV3Se8LSAZb3_xHBWU-poILNU,4935
45
+ rucio/common/types.py,sha256=1tbj6DJhjIovvHQVP1xUjqdXCX8Mg2eEZ3sXDDwXlro,9996
46
+ rucio/common/utils.py,sha256=1NKhpJybKMOSlAYkoIaumgEP6kp8kwQkdLAaOjiZaJk,82568
47
+ rucio/common/schema/__init__.py,sha256=xLZXejC8vl8fco-wW6srBDw2WApCmo1qn01Nm2N0MC8,5510
48
+ rucio/common/schema/atlas.py,sha256=VR6iUVIiK7V6c67iuZZVYlz8vMFBWJTzOHqqdPmRPJQ,15638
49
+ rucio/common/schema/belleii.py,sha256=1dlgVdx3GfWf9jhkA4EyjYchpekiTpiEjPvyw58GU6o,15455
50
+ rucio/common/schema/domatpc.py,sha256=SNk4sr0r16YJINYLjNKRtvRGweJJUwRU0V-egmWFp-s,15036
51
+ rucio/common/schema/escape.py,sha256=GSURW12MB6Orknj1MYeH1lVJCiPbFgpFLXQa_ojLmAE,15975
52
+ rucio/common/schema/generic.py,sha256=Ri7KxalttiYbBKSkM68ifynJwGu6pDmhSw-AWrLPK78,16289
53
+ rucio/common/schema/generic_multi_vo.py,sha256=pHX0xGiCuR5llKteUITCbM2g2NC8kkqXk0Q1SEaSpwI,15513
54
+ rucio/common/schema/icecube.py,sha256=LOg72FVMclYLTFlYHksr6S31HzPf8JoYpQaEeBsaFzY,15326
55
+ rucio/rse/__init__.py,sha256=s04kzZtmEX0XMbkHO_-fW89W1ciPPLtQo1mHpylqA5I,3303
56
+ rucio/rse/rsemanager.py,sha256=KNHRZlT49aSPTffFObdTmeBkz9DTA_cBbpAjZ7mI_Qo,37692
57
+ rucio/rse/protocols/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
58
+ rucio/rse/protocols/bittorrent.py,sha256=GWmOda5PFdkET_j2pXZESin3w9jMyC4AO3jBqyMW4-w,7199
59
+ rucio/rse/protocols/cache.py,sha256=eFFHGiOBOuCGAjXA-_oAfkuUe8JDn2vcdogDtWoflfE,4603
60
+ rucio/rse/protocols/dummy.py,sha256=T_StCBkoZEdBpEYcRuDSsriSwKK27fxQ49hE6S28HKg,4225
61
+ rucio/rse/protocols/gfal.py,sha256=9Q3qdEruxb4G4RbqJHDHbsM3o37Iz4UBbbnN0dWtXcs,29100
62
+ rucio/rse/protocols/globus.py,sha256=NqCGiv7voqj0fZG4nLLuDocL8hZIjpr3BEGZcCMQP5k,9730
63
+ rucio/rse/protocols/gsiftp.py,sha256=AescAZ0rjtmNwP_6zSYBqBHPdwLHPwcGenSKn4xrlOM,3411
64
+ rucio/rse/protocols/http_cache.py,sha256=WYIl6tsuZJ--EvJNdVbaP8rbaqc1TQQAu0IrglBCkOQ,2975
65
+ rucio/rse/protocols/mock.py,sha256=yZDK_xgC7aV9sXrbVsWOliQPS8i0SpsSFigDGy32NOk,4495
66
+ rucio/rse/protocols/ngarc.py,sha256=zrYMtuqRKMcK_ukXu11NZSoTYfgmiwJqyctMU1YVCl8,7224
67
+ rucio/rse/protocols/posix.py,sha256=CjY1zDh3yM89PsLO9KYLQkEEHaBDGA81fGFzFO3sn7o,10414
68
+ rucio/rse/protocols/protocol.py,sha256=2l4ltnzzvqRtw_56u5tIGWtcS2uE_BXz5UDgn5v3-Ws,24911
69
+ rucio/rse/protocols/rclone.py,sha256=M82Qz_cqcDRvk3_TqxcuWTDB7KWUdykxR-KMMN0chZ0,15260
70
+ rucio/rse/protocols/rfio.py,sha256=PB3wW36_Eos7q1-DEX3WsektFeulnbf4OCB8ZPnY4fo,5501
71
+ rucio/rse/protocols/srm.py,sha256=GLij-YCb4uyTijXtFvjktdrOvzMaMVd93ujdbSf5pQ8,14689
72
+ rucio/rse/protocols/ssh.py,sha256=lQ2j_DEKtivoyQqhQhLqpeVvbGD_iF1kvtlAdRm7F-U,17473
73
+ rucio/rse/protocols/storm.py,sha256=1eR1gQe2VcNx_hMJUxA4XXvX0WWgqDd6oI_DkKW4r8Q,8141
74
+ rucio/rse/protocols/webdav.py,sha256=rPmcTB-yjnFJ322J8peliX8EU-696TCg-nG4iV8mTNM,22448
75
+ rucio/rse/protocols/xrootd.py,sha256=0nxVjw_Ab7tauoHsoIV_0A2jGlURZoPYu9dilsgwGpA,12571
76
+ rucio_clients-35.8.2.data/data/requirements.client.txt,sha256=2oEOW5KSXnf5ApEtzQkiwPHswyQrj02D3BwxXfy0V94,1418
77
+ rucio_clients-35.8.2.data/data/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
78
+ rucio_clients-35.8.2.data/data/etc/rucio.cfg.atlas.client.template,sha256=O24QKo-0OX4Clj7Bp2Bv9W-b0NtLkyYg3jNNpz_alr0,1311
79
+ rucio_clients-35.8.2.data/data/etc/rucio.cfg.template,sha256=z1s8B-_C-gKsPM8ZtCOZDTKLd0Emj8IYgLBz4B9dCw4,8534
80
+ rucio_clients-35.8.2.data/data/rucio_client/merge_rucio_configs.py,sha256=u62K1EcCGydM5nZA30zhlqWo4EX5N87b_MDkx5YfzVI,6163
81
+ rucio_clients-35.8.2.data/scripts/rucio,sha256=Bv77AQpk6EuHk1A4c91IgWdMZ1AzIBVvXA_9dZ0_PWk,128577
82
+ rucio_clients-35.8.2.data/scripts/rucio-admin,sha256=OzbgXHRdrHcxN1LIjMIfPU5GcaVPu3OzPZpcfyMONmU,133614
83
+ rucio_clients-35.8.2.dist-info/licenses/AUTHORS.rst,sha256=aakReWi6XP3cIus05aE6qvfMOGJozW42LaRbfJV_QJY,4586
84
+ rucio_clients-35.8.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
85
+ rucio_clients-35.8.2.dist-info/METADATA,sha256=LzK9SZxQ1Yb-6-c9GLpi_POZvWe2HE_DLlLKb6_56Lk,1738
86
+ rucio_clients-35.8.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
87
+ rucio_clients-35.8.2.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
88
+ rucio_clients-35.8.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,97 @@
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
+ - Elena Gazzarrini <gazzarrini.elena@gmail.com>, 2022-2023
69
+ - Maximilian Linhoff, <maximilian.linhoff@tu-dortmund.de>, 2024
70
+
71
+ Organisations employing contributors
72
+ ------------------------------------
73
+ - European Organisation for Nuclear Research (Switzerland)
74
+ - University of Oslo (Norway)
75
+ - University of Wisconsin Madison (USA)
76
+ - National University of La Plata (Argentina)
77
+ - Albert Ludwigs Universität Freiburg (Germany)
78
+ - University of Nebraska Lincoln (USA)
79
+ - Bergische Universität Wuppertal (Germany)
80
+ - University of Victoria (Canada)
81
+ - INFN e Universita Genova (Italy)
82
+ - University of Bonn (Germany)
83
+ - Fermi National Accelerator Laboratory (USA)
84
+ - Leopold-Franzens Universität Innsbruck (Austria)
85
+ - Academia Sinica (Taiwan)
86
+ - University of Edinburgh (UK)
87
+ - Birla Institute of Technology, Mesra (India)
88
+ - Indian Institute of Technology, Kharagpur (India)
89
+ - Stockholm University, Stockholm (Sweden)
90
+ - Dwarkadas J. Sanghvi College of Engineering (India)
91
+ - Science and Technology Facilities Council (UK)
92
+ - Brookhaven National Laboratory (USA)
93
+ - Institut Teknologi Bandung (Indonesia)
94
+ - Imperial College London (UK)
95
+ - University of Chicago (USA)
96
+ - Purdue University (USA)
97
+ - TU Dortmund University (Germany)
@@ -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