invenio-app-rdm 13.0.0b1.dev27__py2.py3-none-any.whl → 13.0.0b2.dev0__py2.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.
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  #
3
- # Copyright (C) 2019-2025 CERN.
3
+ # Copyright (C) 2019-2024 CERN.
4
4
  # Copyright (C) 2019-2022 Northwestern University.
5
5
  # Copyright (C) 2024 Graz University of Technology.
6
6
  #
@@ -17,6 +17,6 @@
17
17
  #
18
18
  # See PEP 0440 for details - https://www.python.org/dev/peps/pep-0440
19
19
 
20
- __version__ = "13.0.0b1.dev27"
20
+ __version__ = "13.0.0b2.dev0"
21
21
 
22
22
  __all__ = ("__version__",)
invenio_app_rdm/config.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  #
3
- # Copyright (C) 2019-2025 CERN.
3
+ # Copyright (C) 2019-2024 CERN.
4
4
  # Copyright (C) 2019-2020 Northwestern University.
5
5
  # Copyright (C) 2021-2024 Graz University of Technology.
6
6
  # Copyright (C) 2022-2024 KTH Royal Institute of Technology.
@@ -1,5 +1,5 @@
1
1
  {#
2
- Copyright (C) 2020-2025 CERN.
2
+ Copyright (C) 2020 CERN.
3
3
  Copyright (C) 2020 Northwestern University.
4
4
  Copyright (C) 2021 New York University.
5
5
 
@@ -15,7 +15,7 @@
15
15
  <h2 id="description-heading" class="sr-only">{{ _('Description') }}</h2>
16
16
  {# description data is being sanitized by marshmallow in the backend #}
17
17
  <div style="word-wrap: break-word;">
18
- {{ description | safe }}
18
+ <p>{{ description | safe }}</p>
19
19
  </div>
20
20
  </section>
21
21
  {% endif %}
@@ -1,5 +1,5 @@
1
1
  {#
2
- Copyright (C) 2020-2025 CERN.
2
+ Copyright (C) 2020-2024 CERN.
3
3
  Copyright (C) 2024 Northwestern University.
4
4
 
5
5
  Invenio RDM Records is free software; you can redistribute it and/or modify
@@ -96,37 +96,40 @@
96
96
 
97
97
 
98
98
  {% macro _show_funding_item(item, index) %}
99
- <dt class="ui tiny header">{{ item.funder.name if item.funder }}</dt>
100
99
  {%- if item.award -%}
101
- <dt class="ui tiny header">
102
- <span class="mr-0 text-muted">
103
- {% if item.award.acronym %}
104
- {{ item.award.acronym }} –
105
- {% endif %}
106
-
107
- {%- if item.award.title_l10n -%}
108
- {{ item.award.title_l10n }}
109
- {%- endif -%}
110
- </span>
100
+ {%- if item.award.title_l10n -%}
101
+ <dt class="ui tiny header">
102
+ <span class="mr-5">
103
+ {% if item.award.acronym %}
104
+ {{ item.award.acronym }} –
105
+ {% endif %}
111
106
 
112
- {%- if item.award.number -%}
113
- <span class="ui mini basic label {% if not item.award.title_l10n %}ml-0{% endif %}" id="number-label-{{ index }}">
114
- {{ item.award.number }}
115
- </span>
116
- {%- endif -%}
107
+ {{ item.award.title_l10n }}
108
+ </span>
117
109
 
118
- {%- if item.award.identifiers -%}
119
- {% for identifier in item.award.identifiers if 'url' == identifier.scheme %}
120
- <a href="{{ identifier.identifier }}" target="_blank"
121
- rel="noopener noreferrer" aria-label="{{ _('Open external link') }}">
122
- <i class="external alternate icon"></i>
123
- </a>
124
- {%- endfor -%}
110
+ {%- if item.award.number -%}
111
+ <span class="ui mini basic label ml-0 mr-5" id="number-label-{{ index }}">
112
+ {{ item.award.number }}
113
+ </span>
114
+ {%- endif -%}
115
+
116
+ {%- if item.award.identifiers -%}
117
+ {% for identifier in item.award.identifiers if 'url' == identifier.scheme %}
118
+ <a href="{{ identifier.identifier }}" target="_blank"
119
+ rel="noopener noreferrer" aria-label="{{ _('Open external link') }}">
120
+ <i class="external alternate icon"></i>
121
+ </a>
122
+ {%- endfor -%}
123
+ {%- endif -%}
124
+ </dt>
125
125
  {%- endif -%}
126
- </dt>
127
- {%- endif -%}
126
+ <dd class="text-muted">{{ item.funder.name if item.funder }}</dd>
127
+ {%- else -%}
128
+ <dt class="ui tiny header">{{ item.funder.name if item.funder }}</dt>
129
+ {%- endif -%}
128
130
  {% endmacro %}
129
131
 
132
+
130
133
  {% macro show_references(references) %}
131
134
  <ul class="ui bulleted list details-list">
132
135
  {% for reference in references %}
@@ -1,6 +1,6 @@
1
1
  {#
2
2
  -*- coding: utf-8 -*-
3
- Copyright (C) 2019-2025 CERN.
3
+ Copyright (C) 2019-2020 CERN.
4
4
  Copyright (C) 2019-2020 Northwestern University.
5
5
  Copyright (C) 2021 New York University.
6
6
 
@@ -126,7 +126,6 @@
126
126
  {%- endblock navbar_right %}
127
127
  </nav>
128
128
  </nav>
129
- </div>
130
129
  {%- endblock navbar %}
131
130
  </div>
132
131
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.1
2
2
  Name: invenio-app-rdm
3
- Version: 13.0.0b1.dev27
3
+ Version: 13.0.0b2.dev0
4
4
  Summary: Invenio Research Data Management.
5
5
  Home-page: https://github.com/inveniosoftware/invenio-app-rdm
6
6
  Author: CERN
@@ -11,53 +11,52 @@ Platform: any
11
11
  Classifier: Development Status :: 5 - Production/Stable
12
12
  Requires-Python: >=3.7
13
13
  License-File: LICENSE
14
- Requires-Dist: invenio-app<2.0.0,>=1.4.0
15
- Requires-Dist: invenio-base<2.0.0,>=1.3.0
16
- Requires-Dist: invenio-cache<2.0.0,>=1.3.0
17
- Requires-Dist: invenio-celery<2.0.0,>=1.2.4
14
+ Requires-Dist: invenio-app<3.0.0,>=2.0.0
15
+ Requires-Dist: invenio-base<3.0.0,>=2.0.0
16
+ Requires-Dist: invenio-cache<3.0.0,>=2.0.0
17
+ Requires-Dist: invenio-celery<3.0.0,>=2.0.0
18
18
  Requires-Dist: invenio-config<2.0.0,>=1.0.3
19
- Requires-Dist: invenio-i18n<3.0.0,>=2.0.0
20
- Requires-Dist: invenio-db[mysql,postgresql]<2.0.0,>=1.1.0
21
- Requires-Dist: invenio-assets<4.0.0,>=3.1.0
22
- Requires-Dist: invenio-formatter<3.0.0,>=2.0.0
23
- Requires-Dist: invenio-logging<3.0.0,>=2.0.0
19
+ Requires-Dist: invenio-i18n<4.0.0,>=3.0.0
20
+ Requires-Dist: invenio-db[mysql,postgresql]<3.0.0,>=2.0.0
21
+ Requires-Dist: invenio-assets<5.0.0,>=4.0.0
22
+ Requires-Dist: invenio-formatter<4.0.0,>=3.0.0
23
+ Requires-Dist: invenio-logging<5.0.0,>=4.0.0
24
24
  Requires-Dist: invenio-mail<3.0.0,>=2.0.0
25
- Requires-Dist: invenio-rest<2.0.0,>=1.3.0
26
- Requires-Dist: invenio-theme<4.0.0,>=3.0.0
27
- Requires-Dist: invenio-access<4.0.0,>=3.0.0
28
- Requires-Dist: invenio-accounts<6.0.0,>=5.0.0
29
- Requires-Dist: invenio-oauth2server<3.0.0,>=2.0.0
30
- Requires-Dist: invenio-oauthclient<5.0.0,>=4.0.0
31
- Requires-Dist: invenio-userprofiles<4.0.0,>=3.0.0
32
- Requires-Dist: invenio-indexer<3.0.0,>=2.2.0
33
- Requires-Dist: invenio-jsonschemas<2.0.0,>=1.1.4
34
- Requires-Dist: invenio-oaiserver<3.0.0,>=2.2.0
35
- Requires-Dist: invenio-pidstore<2.0.0,>=1.3.0
36
- Requires-Dist: invenio-records-rest<3.0.0,>=2.2.0
37
- Requires-Dist: invenio-records-ui<2.0.0,>=1.2.0
38
- Requires-Dist: invenio-records<3.0.0,>=2.2.1
39
- Requires-Dist: invenio-search-ui<4.0.0,>=3.0.0
40
- Requires-Dist: invenio-files-rest<3.0.0,>=2.0.0
41
- Requires-Dist: invenio-previewer<3.0.0,>=2.2.0
25
+ Requires-Dist: invenio-rest<3.0.0,>=2.0.0
26
+ Requires-Dist: invenio-theme<5.0.0,>=4.0.0
27
+ Requires-Dist: invenio-access<5.0.0,>=4.0.0
28
+ Requires-Dist: invenio-accounts<7.0.0,>=6.0.0
29
+ Requires-Dist: invenio-oauth2server<4.0.0,>=3.0.0
30
+ Requires-Dist: invenio-oauthclient<6.0.0,>=5.0.0
31
+ Requires-Dist: invenio-userprofiles<5.0.0,>=4.0.0
32
+ Requires-Dist: invenio-indexer<4.0.0,>=3.0.0
33
+ Requires-Dist: invenio-jsonschemas<3.0.0,>=2.0.0
34
+ Requires-Dist: invenio-oaiserver<4.0.0,>=3.0.0
35
+ Requires-Dist: invenio-pidstore<3.0.0,>=2.0.0
36
+ Requires-Dist: invenio-records-rest<4.0.0,>=3.0.0
37
+ Requires-Dist: invenio-records-ui<3.0.0,>=2.0.0
38
+ Requires-Dist: invenio-records<4.0.0,>=3.0.0
39
+ Requires-Dist: invenio-search-ui<5.0.0,>=4.0.0
40
+ Requires-Dist: invenio-files-rest<4.0.0,>=3.0.0
41
+ Requires-Dist: invenio-previewer<4.0.0,>=3.0.0
42
42
  Requires-Dist: invenio-records-files<2.0.0,>=1.2.1
43
- Requires-Dist: invenio-communities<18.0.0,>=17.0.0
44
- Requires-Dist: invenio-rdm-records<17.0.0,>=16.0.0
43
+ Requires-Dist: invenio-communities<19.0.0,>=18.0.0.dev1
44
+ Requires-Dist: invenio-rdm-records<18.0.0,>=17.0.0.dev1
45
45
  Requires-Dist: CairoSVG<3.0.0,>=2.5.2
46
- Requires-Dist: invenio-banners<4.0.0,>=3.0.0
47
- Requires-Dist: invenio-pages<5.0.0,>=4.0.0
48
- Requires-Dist: Flask<2.3.0,>=2.2.0
46
+ Requires-Dist: invenio-banners<5.0.0,>=4.0.0
47
+ Requires-Dist: invenio-pages<6.0.0,>=5.0.0
49
48
  Provides-Extra: tests
50
49
  Requires-Dist: pytest-black-ng>=0.4.0; extra == "tests"
51
- Requires-Dist: pytest-invenio<3.0.0,>=2.1.0; extra == "tests"
50
+ Requires-Dist: pytest-invenio<4.0.0,>=3.0.0; extra == "tests"
52
51
  Requires-Dist: Sphinx>=4.5.0; extra == "tests"
53
52
  Provides-Extra: elasticsearch7
54
- Requires-Dist: invenio-search[elasticsearch7]<3.0.0,>=2.1.0; extra == "elasticsearch7"
53
+ Requires-Dist: invenio-search[elasticsearch7]<4.0.0,>=3.0.0; extra == "elasticsearch7"
55
54
  Provides-Extra: opensearch1
56
- Requires-Dist: invenio-search[opensearch1]<3.0.0,>=2.1.0; extra == "opensearch1"
55
+ Requires-Dist: invenio-search[opensearch1]<4.0.0,>=3.0.0; extra == "opensearch1"
57
56
  Provides-Extra: opensearch2
58
- Requires-Dist: invenio-search[opensearch2]<3.0.0,>=2.1.0; extra == "opensearch2"
57
+ Requires-Dist: invenio-search[opensearch2]<4.0.0,>=3.0.0; extra == "opensearch2"
59
58
  Provides-Extra: s3
60
- Requires-Dist: invenio-s3~=1.0.5; extra == "s3"
59
+ Requires-Dist: invenio-s3<3.0.0,>=2.0.0; extra == "s3"
61
60
 
62
61
  ..
63
62
  Copyright (C) 2019 CERN.
@@ -97,19 +96,11 @@ https://inveniordm.docs.cern.ch
97
96
  Changes
98
97
  =======
99
98
 
100
- Version v13.0.0b1.dev27 (released 2025-01-16)
99
+ Version 13.0.0b2.dev0 (released 2024-12-16)
101
100
 
102
- - Revert "config: add record and membership comment notifications"
103
- * This is actually a breaking change since it introduces a new
104
- set of notification templates that will potentialy not be
105
- styled if overridden in an instance's overlay.
106
-
107
- Version v13.0.0b1.dev26 (released 2025-01-16)
108
-
109
- - config: add record and membership comment notifications
110
- - records/macros/detail.html: Allow funding entry with award number only (#2912)
111
- - records-ui: remove unnecessary p tag in record details
112
- - ui: close unclosed div in header navbar
101
+ - setup: remove flask pin
102
+ - setup: change to reusable workflows
103
+ - setup: bump major dependencies
113
104
 
114
105
  Version v13.0.0b1.dev24 (released 2024-12-10)
115
106
 
@@ -1,6 +1,6 @@
1
- invenio_app_rdm/__init__.py,sha256=3elnS9VtcHsQ4M7ZRFrjQGSNiWRk1S21ENs8rGFwtjw,700
1
+ invenio_app_rdm/__init__.py,sha256=XGKeb77y4TOdS5IluPGqpHJLKgtTiFjG5VQhVTgcDdo,699
2
2
  invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
3
- invenio_app_rdm/config.py,sha256=huHWP7FzjvRb7r_VOL33A9LQWKdmkUVJyEJaibKp3d4,50265
3
+ invenio_app_rdm/config.py,sha256=DtcOCtpKsMZPOwnSPswZ4NW8Uc33H3o9VkxCMsr7GXM,50265
4
4
  invenio_app_rdm/ext.py,sha256=PkZhATGJDgYqBJQh41NdvBZWR83mgI3Eej6rj10UVJE,5278
5
5
  invenio_app_rdm/tasks.py,sha256=XAbl8KeAWaJ5lC_4OUWUPstvCT7lYs5tRR1zSVBDfRk,1275
6
6
  invenio_app_rdm/urls.py,sha256=VRbpuN3kQ2fcmKvEIGQ5O1EnaSsEE2kyhLwUmONwZO8,2192
@@ -53,7 +53,7 @@ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details
53
53
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html,sha256=zQO0X5Fdk9MG_ODPoe2w4RMGUp35eF7KD_6u4rf332A,561
54
54
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html,sha256=svvc6qCwyMQIRnFFcIzaRTkwcnmyTOz6THRgBnl-h_o,336
55
55
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html,sha256=vOC6Tnlkn3wrYUfLQDVWRTRFmy3jgv1E9vIMwRV13XI,2090
56
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html,sha256=wqLb_Z6cJ026KEDedJMSsQhQnKWpe7TnMuMVwFAMDX0,912
56
+ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html,sha256=JEkhz_H14fGHMuYs3uyIEu_3hJqTSEPhLCtHtyKFY6E,914
57
57
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html,sha256=jdXr5U6YS8UllEuJjjSzusJJ1XkdE75V2q97h43D0NA,12095
58
58
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html,sha256=bveXC9JvZVjPKQrtZ8FFUV-fIHEN4nB1VSyomR_obxA,473
59
59
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/meta.html,sha256=V_-DVNjwPDPTnHSprcdbO8MZWiwWyDWjzQofU26b4bk,1616
@@ -73,7 +73,7 @@ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details
73
73
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html,sha256=N5VUwCygKG-zXvyu0YeFJb7A0eHIcKWuMAVm9Kbrb_M,658
74
74
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html,sha256=sPYG81XFcU1ND6roeYmN4SY419iyvQj9ozCv9Pctw5E,932
75
75
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html,sha256=TY4SwihdciZOp4G0SLd8FC54jRbonmx0TwxbsygageY,4173
76
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html,sha256=UZ1TUcWe6keYSIOOb7CdVAUdvvE5RV0psQEvBHDqqkI,9767
76
+ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html,sha256=8jx7zA7g8waCW3-9tmRH7_4JiFttjv2kr4i2w0BDYlw,9879
77
77
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html,sha256=NZUtJSCwQScJsmz7vxglslEVqPwG7Ldul_wl7yce0fg,1489
78
78
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html,sha256=Xsq_HiM_cTGKgmoE1HAXje8iYe3d0wIJoesk22Xn7vU,8761
79
79
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html,sha256=27-KyPqb05pu-yRXHvxCgZWRSi5bFP6xf7XBn91sbeA,1741
@@ -381,7 +381,7 @@ invenio_app_rdm/theme/static/images/ror-icon.svg,sha256=aIth5_-aYB7yx1nswjM6XgHA
381
381
  invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/default_static_page.html,sha256=Un6KtaKmNlM-R7Qu1eeh0FFckgym3mq1zHV-AOew5pY,1178
382
382
  invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html,sha256=rZ5XGaoYNIOCii6W7ClPv6sgjeU5HPLR6TeEqTWzDZ0,2975
383
383
  invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html,sha256=l-u25QOE2OkkPt-f7Cce469u4W2TnBdB_HVXpSZx3DE,1605
384
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html,sha256=wACxdZA3i_iudBzYj3QfMSFMdTVGOBjBFtd04QCIK4c,5687
384
+ invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html,sha256=6YZgEAb39g6dl1HCkD2tkkeSzV1OxenhY9kOFo0eEos,5674
385
385
  invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html,sha256=SQqgYKN0GrzieSydu0fd0eveup_R_J4zzG8bR8QlUGw,1820
386
386
  invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html,sha256=eZMJSypWlQ2CNbiyS8lSc4s6kHX31I-wuAYLaPAmxGk,5803
387
387
  invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html,sha256=Z3do1vmM06-pj0uJhCtBDjwvfZuc6XpYGFsqFtdPpf8,3056
@@ -519,9 +519,9 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
519
519
  invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
520
520
  invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
521
521
  invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
522
- invenio_app_rdm-13.0.0b1.dev27.dist-info/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
523
- invenio_app_rdm-13.0.0b1.dev27.dist-info/METADATA,sha256=7o7ejauUNinc7T-e4HlkdyT-1JzcQE1eVOyPs7fYxmw,9272
524
- invenio_app_rdm-13.0.0b1.dev27.dist-info/WHEEL,sha256=9Hm2OB-j1QcCUq9Jguht7ayGIIZBRTdOXD1qg9cCgPM,109
525
- invenio_app_rdm-13.0.0b1.dev27.dist-info/entry_points.txt,sha256=r1vTqYNABeWqRMWitzyR9FnBsAy-KYZKZCp95IziyLY,2070
526
- invenio_app_rdm-13.0.0b1.dev27.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
527
- invenio_app_rdm-13.0.0b1.dev27.dist-info/RECORD,,
522
+ invenio_app_rdm-13.0.0b2.dev0.dist-info/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
523
+ invenio_app_rdm-13.0.0b2.dev0.dist-info/METADATA,sha256=Vr0worPQ5PnRnNDwQTmK4HbfB_xnv_6mRPjhgrP3y6o,8811
524
+ invenio_app_rdm-13.0.0b2.dev0.dist-info/WHEEL,sha256=pxeNX5JdtCe58PUSYP9upmc7jdRPgvT0Gm9kb1SHlVw,109
525
+ invenio_app_rdm-13.0.0b2.dev0.dist-info/entry_points.txt,sha256=r1vTqYNABeWqRMWitzyR9FnBsAy-KYZKZCp95IziyLY,2070
526
+ invenio_app_rdm-13.0.0b2.dev0.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
527
+ invenio_app_rdm-13.0.0b2.dev0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any