psdi-data-conversion 0.0.35__py3-none-any.whl → 0.0.36__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.
- psdi_data_conversion/app.py +23 -3
- psdi_data_conversion/constants.py +2 -0
- psdi_data_conversion/converter.py +16 -6
- psdi_data_conversion/converters/atomsk.py +3 -1
- psdi_data_conversion/converters/base.py +99 -39
- psdi_data_conversion/converters/c2x.py +3 -1
- psdi_data_conversion/converters/openbabel.py +40 -1
- psdi_data_conversion/database.py +5 -0
- psdi_data_conversion/main.py +18 -10
- psdi_data_conversion/static/content/accessibility.htm +5 -5
- psdi_data_conversion/static/content/convert.htm +18 -13
- psdi_data_conversion/static/content/convertato.htm +40 -33
- psdi_data_conversion/static/content/convertc2x.htm +40 -33
- psdi_data_conversion/static/content/documentation.htm +4 -4
- psdi_data_conversion/static/content/download.htm +4 -1
- psdi_data_conversion/static/content/feedback.htm +4 -4
- psdi_data_conversion/static/content/index-versions/psdi-common-header.html +1 -1
- psdi_data_conversion/static/content/psdi-common-header.html +1 -1
- psdi_data_conversion/static/content/report.htm +9 -7
- psdi_data_conversion/static/javascript/common.js +20 -0
- psdi_data_conversion/static/javascript/convert.js +1 -2
- psdi_data_conversion/static/javascript/convert_common.js +80 -7
- psdi_data_conversion/static/javascript/convertato.js +1 -2
- psdi_data_conversion/static/javascript/convertc2x.js +1 -2
- psdi_data_conversion/static/javascript/format.js +12 -0
- psdi_data_conversion/static/javascript/report.js +6 -0
- psdi_data_conversion/static/styles/format.css +0 -6
- psdi_data_conversion/static/styles/psdi-common.css +5 -2
- psdi_data_conversion/templates/index.htm +4 -1
- psdi_data_conversion/testing/conversion_test_specs.py +240 -149
- psdi_data_conversion/testing/utils.py +22 -7
- {psdi_data_conversion-0.0.35.dist-info → psdi_data_conversion-0.0.36.dist-info}/METADATA +29 -6
- {psdi_data_conversion-0.0.35.dist-info → psdi_data_conversion-0.0.36.dist-info}/RECORD +36 -36
- {psdi_data_conversion-0.0.35.dist-info → psdi_data_conversion-0.0.36.dist-info}/WHEEL +0 -0
- {psdi_data_conversion-0.0.35.dist-info → psdi_data_conversion-0.0.36.dist-info}/entry_points.txt +0 -0
- {psdi_data_conversion-0.0.35.dist-info → psdi_data_conversion-0.0.36.dist-info}/licenses/LICENSE +0 -0
@@ -102,13 +102,16 @@ class ConversionTestSpec:
|
|
102
102
|
(as if using zip on the multiple lists) to test each element in turn.
|
103
103
|
"""
|
104
104
|
|
105
|
+
name: str
|
106
|
+
"""The name of this test specification"""
|
107
|
+
|
105
108
|
filename: str | Iterable[str] = "nacl.cif"
|
106
109
|
"""The name of the input file, relative to the input test data location, or a list thereof"""
|
107
110
|
|
108
111
|
to_format: str | Iterable[str] = "pdb"
|
109
112
|
"""The format to test converting the input file to, or a list thereof"""
|
110
113
|
|
111
|
-
|
114
|
+
converter_name: str | Iterable[str] = CONVERTER_DEFAULT
|
112
115
|
"""The name of the converter to be used for the test, or a list thereof"""
|
113
116
|
|
114
117
|
conversion_kwargs: dict[str, Any] | Iterable[dict[str, Any]] = field(default_factory=dict)
|
@@ -124,6 +127,15 @@ class ConversionTestSpec:
|
|
124
127
|
should take as its only argument a `ConversionTestInfo` and return a string. The string should be empty if the check
|
125
128
|
is passed and should explain the failure otherwise."""
|
126
129
|
|
130
|
+
compatible_with_library: bool = True
|
131
|
+
"""Whether or not this test spec is compatible with being run through the Python library, default True"""
|
132
|
+
|
133
|
+
compatible_with_cla: bool = True
|
134
|
+
"""Whether or not this test spec is compatible with being run through the command-line application, default True"""
|
135
|
+
|
136
|
+
compatible_with_gui: bool = True
|
137
|
+
"""Whether or not this test spec is compatible with being run through the GUI, default True"""
|
138
|
+
|
127
139
|
def __post_init__(self):
|
128
140
|
"""Regularize the lengths of all attribute lists, in case some were provided as single values and others as
|
129
141
|
lists, and set up initial values
|
@@ -131,7 +143,10 @@ class ConversionTestSpec:
|
|
131
143
|
|
132
144
|
# To ease maintainability, we get the list of this class's attributes automatically from its __dict__, excluding
|
133
145
|
# any which start with an underscore
|
134
|
-
self._l_attr_names: list[str] = [attr_name for attr_name in self.__dict__ if
|
146
|
+
self._l_attr_names: list[str] = [attr_name for attr_name in self.__dict__ if
|
147
|
+
not (attr_name.startswith("_") or
|
148
|
+
attr_name == "name" or
|
149
|
+
attr_name.startswith("compatible"))]
|
135
150
|
|
136
151
|
l_single_val_attrs = []
|
137
152
|
self._len: int = 1
|
@@ -196,7 +211,7 @@ class SingleConversionTestSpec:
|
|
196
211
|
to_format: str
|
197
212
|
"""The format to test converting the input file to"""
|
198
213
|
|
199
|
-
|
214
|
+
converter_name: str | Iterable[str] = CONVERTER_DEFAULT
|
200
215
|
"""The name of the converter to be used for the test"""
|
201
216
|
|
202
217
|
conversion_kwargs: dict[str, Any] = field(default_factory=dict)
|
@@ -279,7 +294,7 @@ def _run_single_test_conversion_with_library(test_spec: SingleConversionTestSpec
|
|
279
294
|
if test_spec.expect_success:
|
280
295
|
run_converter(filename=qualified_in_filename,
|
281
296
|
to_format=test_spec.to_format,
|
282
|
-
name=test_spec.
|
297
|
+
name=test_spec.converter_name,
|
283
298
|
upload_dir=input_dir,
|
284
299
|
download_dir=output_dir,
|
285
300
|
**test_spec.conversion_kwargs)
|
@@ -288,7 +303,7 @@ def _run_single_test_conversion_with_library(test_spec: SingleConversionTestSpec
|
|
288
303
|
with pytest.raises(Exception) as exc_info:
|
289
304
|
run_converter(filename=qualified_in_filename,
|
290
305
|
to_format=test_spec.to_format,
|
291
|
-
name=test_spec.
|
306
|
+
name=test_spec.converter_name,
|
292
307
|
upload_dir=input_dir,
|
293
308
|
download_dir=output_dir,
|
294
309
|
**test_spec.conversion_kwargs)
|
@@ -359,7 +374,7 @@ def _run_single_test_conversion_with_cla(test_spec: SingleConversionTestSpec,
|
|
359
374
|
if test_spec.expect_success:
|
360
375
|
run_converter_through_cla(filename=qualified_in_filename,
|
361
376
|
to_format=test_spec.to_format,
|
362
|
-
name=test_spec.
|
377
|
+
name=test_spec.converter_name,
|
363
378
|
input_dir=input_dir,
|
364
379
|
output_dir=output_dir,
|
365
380
|
log_file=os.path.join(output_dir, test_spec.log_filename),
|
@@ -369,7 +384,7 @@ def _run_single_test_conversion_with_cla(test_spec: SingleConversionTestSpec,
|
|
369
384
|
with pytest.raises(SystemExit) as exc_info:
|
370
385
|
run_converter_through_cla(filename=qualified_in_filename,
|
371
386
|
to_format=test_spec.to_format,
|
372
|
-
name=test_spec.
|
387
|
+
name=test_spec.converter_name,
|
373
388
|
input_dir=input_dir,
|
374
389
|
output_dir=output_dir,
|
375
390
|
log_file=os.path.join(output_dir, test_spec.log_filename),
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: psdi_data_conversion
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.36
|
4
4
|
Summary: Chemistry file format conversion service, provided by PSDI
|
5
5
|
Project-URL: Homepage, https://data-conversion.psdi.ac.uk/
|
6
6
|
Project-URL: Documentation, https://psdi-uk.github.io/psdi-data-conversion/
|
@@ -403,13 +403,21 @@ In addition to the dependencies listed above, this project uses the assets made
|
|
403
403
|
|
404
404
|
### Installation
|
405
405
|
|
406
|
-
The CLA and Python library are installed together. This
|
406
|
+
The CLA and Python library are installed together. This project is available on PyPI, and so can be installed via pip with:
|
407
|
+
|
408
|
+
```bash
|
409
|
+
pip install psdi-data-conversion
|
410
|
+
```
|
411
|
+
|
412
|
+
If you wish to install from source, this can be done most easily by cloning the project and then executing:
|
407
413
|
|
408
414
|
```bash
|
409
415
|
pip install .
|
410
416
|
```
|
411
417
|
|
412
|
-
|
418
|
+
from this project's directory. You can also replace the '.' in this command with the path to this project's directory to install it from elsewhere.
|
419
|
+
|
420
|
+
**Note:** This project uses git to determine the version number. If you clone the repository, you won't have to do anything special here, but if you get the source e.g. by extracting a release archive, you'll have to do one additional step before running the command above. If you have git installed, simply run `git init` in the project directory and it will be able to install. Otherwise, edit the project's `pyproject.toml` file to uncomment the line that sets a fixed version, and comment out the lines that set it up to determine the version from git - these are pointed out in the comments there.
|
413
421
|
|
414
422
|
Depending on your system, it may not be possible to install packages in this manner without creating a virtual environment to do so in. You can do this by first installing the `venv` module for Python3 with e.g.:
|
415
423
|
|
@@ -572,15 +580,23 @@ Enter https://data-conversion.psdi.ac.uk/ in a browser. Guidance on usage is giv
|
|
572
580
|
|
573
581
|
### Installation and Setup
|
574
582
|
|
575
|
-
|
583
|
+
This project is available on PyPI, and so can be installed via pip, including the necessary dependencies for the GUI, with:
|
584
|
+
|
585
|
+
```bash
|
586
|
+
pip install psdi-data-conversion'[gui]'
|
587
|
+
```
|
588
|
+
|
589
|
+
If you wish to install the project locally from source, this can be done most easily by cloning the project and then executing:
|
576
590
|
|
577
591
|
```bash
|
578
592
|
pip install .'[gui]'
|
579
593
|
```
|
580
594
|
|
581
|
-
If
|
595
|
+
**Note:** This project uses git to determine the version number. If you clone the repository, you won't have to do anything special here, but if you get the source e.g. by extracting a release archive, you'll have to do one additional step before running the command above. If you have git installed, simply run `git init` in the project directory and it will be able to install. Otherwise, edit the project's `pyproject.toml` file to uncomment the line that sets a fixed version, and comment out the lines that set it up to determine the version from git - these are pointed out in the comments there.
|
582
596
|
|
583
|
-
If
|
597
|
+
If your system does not allow installation in this manner, it may be necessary to set up a virtual environment. See the instructions in the [command-line application installation](#installation) section above for how to do that, and then try to install again once you've set one up and activated it.
|
598
|
+
|
599
|
+
If you've installed this repository from source, you can use the provided `run_local.sh` bash script to run the application. Otherwise (e.g. if you've installed from a wheel or PyPI), copy and paste the following into a script:
|
584
600
|
|
585
601
|
```bash
|
586
602
|
#!/bin/bash
|
@@ -590,6 +606,13 @@ if [ -z $MAX_FILESIZE ]; then
|
|
590
606
|
export MAX_FILESIZE=0
|
591
607
|
fi
|
592
608
|
|
609
|
+
# The envvar MAX_FILESIZE_OB can be used to set the maximum allowed filesize in MB for the Open Babel converter - 0
|
610
|
+
# indicates no maximum. This is currently set to 1 MB by default as the converter seems to hang above this limit (not
|
611
|
+
# even allowing the process to be cancelled). This can be changed in the future if this is patched
|
612
|
+
if [ -z $MAX_FILESIZE_OB ]; then
|
613
|
+
export MAX_FILESIZE_OB=1
|
614
|
+
fi
|
615
|
+
|
593
616
|
# Logging control - "full" sets server-style logging, which is necessary to produce the output logs with the expected
|
594
617
|
# names. This should not be changed, or else errors will occur
|
595
618
|
export LOG_MODE=full
|
@@ -1,12 +1,12 @@
|
|
1
1
|
psdi_data_conversion/__init__.py,sha256=urMsTqsTHTch1q4rMT9dgGnrvdPFMP9B8r-6Kr8H5sE,404
|
2
|
-
psdi_data_conversion/app.py,sha256=
|
3
|
-
psdi_data_conversion/constants.py,sha256=
|
4
|
-
psdi_data_conversion/converter.py,sha256=
|
5
|
-
psdi_data_conversion/database.py,sha256=
|
2
|
+
psdi_data_conversion/app.py,sha256=LMVK3R8Ooz0vj8Pb4N5MkKQDOb91i5FhH5aHty5RDDM,8998
|
3
|
+
psdi_data_conversion/constants.py,sha256=jh9-EqTt3E5I5H5axpANjQI_JuVeqsACoUVHuw6RX8Y,7351
|
4
|
+
psdi_data_conversion/converter.py,sha256=f5Uos26M3KfDFQ-zoEOJVs0lEASkYRQyXrR0B9MhDmU,22906
|
5
|
+
psdi_data_conversion/database.py,sha256=WMOdz6T2b2XuE_d-Ex_v5oRi-TDEHcku_yT04en4GoE,44274
|
6
6
|
psdi_data_conversion/dist.py,sha256=Ju6BcEuLrB738diTbK6HX6ZBiZ40Ctq1exj44nSCMlE,2292
|
7
7
|
psdi_data_conversion/file_io.py,sha256=UXxNxTl_EabQ96UrLp4b38ctkYhXV_KIHJeTuyRBVpM,8857
|
8
8
|
psdi_data_conversion/log_utility.py,sha256=WIgQp0pMsFtJJZKgIhStBNnjLzC6gEIodQAoXji5ht0,8789
|
9
|
-
psdi_data_conversion/main.py,sha256=
|
9
|
+
psdi_data_conversion/main.py,sha256=90vCObJSG7Xxi_iyx2awskOt8RT9_Erel9rT8uz0n78,38203
|
10
10
|
psdi_data_conversion/security.py,sha256=wjdrMre29TpkF2NqrsXJ5sschSAnDzqLYTLUcNR21Qw,902
|
11
11
|
psdi_data_conversion/bin/LICENSE_ATOMSK,sha256=-Ay6SFTAf9x-OaRAiOgMNoutfUMLHx5jQQA1HqZ6p7I,34886
|
12
12
|
psdi_data_conversion/bin/LICENSE_C2X,sha256=-Ay6SFTAf9x-OaRAiOgMNoutfUMLHx5jQQA1HqZ6p7I,34886
|
@@ -15,26 +15,26 @@ psdi_data_conversion/bin/linux/c2x,sha256=gi4XsMbJu7lFxckc_FNYmfDf35yZPSToh6Hm5L
|
|
15
15
|
psdi_data_conversion/bin/mac/atomsk,sha256=pqExRdkR8NSqSasHZjE74R_CiM6Dkr_yvfyakdTWtI8,4502371
|
16
16
|
psdi_data_conversion/bin/mac/c2x,sha256=dI-bBoQ6uqc6KMYKJaq0x7ejJgOf_wysTxQA5BrF8AY,2581960
|
17
17
|
psdi_data_conversion/converters/__init__.py,sha256=15Ldt06eyZ0bgNPB4qg419U0Zcjt6TUCTzjCBo8EIzM,210
|
18
|
-
psdi_data_conversion/converters/atomsk.py,sha256=
|
19
|
-
psdi_data_conversion/converters/base.py,sha256=
|
20
|
-
psdi_data_conversion/converters/c2x.py,sha256=
|
21
|
-
psdi_data_conversion/converters/openbabel.py,sha256=
|
18
|
+
psdi_data_conversion/converters/atomsk.py,sha256=_V33me1e4HW0-YXvdE-z6PdwtSK2gYV6QZf5d8aPqH4,1523
|
19
|
+
psdi_data_conversion/converters/base.py,sha256=QTXOWEkrKmQvBANEmJilNtI3i0fRFkbVetVtYk8zXxw,35535
|
20
|
+
psdi_data_conversion/converters/c2x.py,sha256=RjvOUxrb7R09s58p1kQKhICVUvozNJc4bvhQGkk89Ng,1498
|
21
|
+
psdi_data_conversion/converters/openbabel.py,sha256=BGEXPdOfm5QNO67gymH8PrmW88pMvXF8_9fosz3_Bcg,13150
|
22
22
|
psdi_data_conversion/scripts/atomsk.sh,sha256=N_NMO5q8sI3Lt1TerC-xcKbMI0kfscAudy5UAbY0uR0,804
|
23
23
|
psdi_data_conversion/scripts/c2x.sh,sha256=F48jhgtgouKKZDQ9p6tCCNBN5bPuidBq2GcTurdWzQc,770
|
24
|
-
psdi_data_conversion/static/content/accessibility.htm,sha256=
|
25
|
-
psdi_data_conversion/static/content/convert.htm,sha256=
|
26
|
-
psdi_data_conversion/static/content/convertato.htm,sha256=
|
27
|
-
psdi_data_conversion/static/content/convertc2x.htm,sha256=
|
28
|
-
psdi_data_conversion/static/content/documentation.htm,sha256=
|
29
|
-
psdi_data_conversion/static/content/download.htm,sha256=
|
30
|
-
psdi_data_conversion/static/content/feedback.htm,sha256=
|
24
|
+
psdi_data_conversion/static/content/accessibility.htm,sha256=5mzlPM-d5KBoOuvuBTmer5QEI9lWQSd7FPH1KFn_7B0,14187
|
25
|
+
psdi_data_conversion/static/content/convert.htm,sha256=sw4U8yQQXNYXl2ruYPfg6qIMozL2KMpWlKcAzn208X8,7166
|
26
|
+
psdi_data_conversion/static/content/convertato.htm,sha256=IQ2PUodkWdZbbuvctDs2Ow0tEJXvhrnzhvGYDF7Oiiw,3669
|
27
|
+
psdi_data_conversion/static/content/convertc2x.htm,sha256=mqMscskUPS1JtV1ABl91kH_JyCmK7ORFjD1n2_MZFz4,3669
|
28
|
+
psdi_data_conversion/static/content/documentation.htm,sha256=1GiEjlDCP0kJ3CKkx3l1gPxeOPp4bdOP95MPKx4dzvI,5557
|
29
|
+
psdi_data_conversion/static/content/download.htm,sha256=J_KwSKjWJJj9-v4ouGuddG_LIMmWzo7Zn7CjiJleUrw,4163
|
30
|
+
psdi_data_conversion/static/content/feedback.htm,sha256=fZrhn4Egs9g6ygqPzV6ZG9ndYK02VdALNVNXRsZ716k,1788
|
31
31
|
psdi_data_conversion/static/content/header-links.html,sha256=7B2bHa7dLfSZ4hPMvVJ3kR0niVAOO3FtHJo0K6m1oP4,693
|
32
32
|
psdi_data_conversion/static/content/psdi-common-footer.html,sha256=CM9F6AXM1LVMLvTP51xTzOicEelSXlyXQyN-BjrQAJk,3933
|
33
|
-
psdi_data_conversion/static/content/psdi-common-header.html,sha256=
|
34
|
-
psdi_data_conversion/static/content/report.htm,sha256=
|
33
|
+
psdi_data_conversion/static/content/psdi-common-header.html,sha256=vRAgLGKE_RhXgBUQnarxnpkGl9j2Qeedqqo3VNDVGdk,1825
|
34
|
+
psdi_data_conversion/static/content/report.htm,sha256=CRwlF7a7QvAjHsajuehWOtLxbo-JAjqrS_Q-I4BWxzs,4549
|
35
35
|
psdi_data_conversion/static/content/index-versions/header-links.html,sha256=WN9oZL7hLtH_yv5PvX3Ky7_YGrNvQL_RQ5eU8DB50Rg,764
|
36
36
|
psdi_data_conversion/static/content/index-versions/psdi-common-footer.html,sha256=zzizo_YEPhvH3_jNPFkFoKZA0TnIG6EXzQOsgooU1K8,3989
|
37
|
-
psdi_data_conversion/static/content/index-versions/psdi-common-header.html,sha256=
|
37
|
+
psdi_data_conversion/static/content/index-versions/psdi-common-header.html,sha256=IXmvdlArY-60b7HgvKjcNF3eSmEmTImX7Hdasswyi5s,1907
|
38
38
|
psdi_data_conversion/static/data/data.json,sha256=_3o3BFEmnWGhoGMaviJsu-U9dJnk_tH9Wf0g-eDVWuU,3630027
|
39
39
|
psdi_data_conversion/static/img/colormode-toggle-dm.svg,sha256=Q85ODwU67chZ77lyT9gITtnmqzJEycFmz35dJuqaPXE,502
|
40
40
|
psdi_data_conversion/static/img/colormode-toggle-lm.svg,sha256=sIKXsNmLIXU4fSuuqrN0r-J4Hd3NIqoiXNT3mdq5-Fo,1155
|
@@ -61,26 +61,26 @@ psdi_data_conversion/static/img/ukri-epsr-logo-lighttext.png,sha256=Am-5nHjr-yA_
|
|
61
61
|
psdi_data_conversion/static/img/ukri-logo-darktext.png,sha256=3UgghERAmFdnre0FfcA8JcskVLbnOn-oH4MCWEazyD4,25570
|
62
62
|
psdi_data_conversion/static/img/ukri-logo-lighttext.png,sha256=ptIQwIGGdVsO2rTximo9QjtJFH9DpkJcAs1glwKFjwo,25579
|
63
63
|
psdi_data_conversion/static/javascript/accessibility.js,sha256=kbnWHeBNPrTLrnYRjMEUmiOcCXM2bORYIRfzUB03TAE,7208
|
64
|
-
psdi_data_conversion/static/javascript/common.js,sha256=
|
65
|
-
psdi_data_conversion/static/javascript/convert.js,sha256=
|
66
|
-
psdi_data_conversion/static/javascript/convert_common.js,sha256=
|
67
|
-
psdi_data_conversion/static/javascript/convertato.js,sha256=
|
68
|
-
psdi_data_conversion/static/javascript/convertc2x.js,sha256=
|
64
|
+
psdi_data_conversion/static/javascript/common.js,sha256=3YZdwfq54OPl-xIImTwjbXqxKqlrAaEbeac0cAHvScU,1720
|
65
|
+
psdi_data_conversion/static/javascript/convert.js,sha256=UfrqaO7VNiLeed-d92O_jpKXRa63-0tCb_e-rqjTdFM,9074
|
66
|
+
psdi_data_conversion/static/javascript/convert_common.js,sha256=o4KHIlYToC3AfOa8MTzbPaNDjPEesyvUy50AVgTRxvI,11000
|
67
|
+
psdi_data_conversion/static/javascript/convertato.js,sha256=faSvfm9HWT3i8piqEDq8OfekiPo3jCV2vKT_VjdzwmE,3555
|
68
|
+
psdi_data_conversion/static/javascript/convertc2x.js,sha256=TTqC9B2FD_q3RcPE2GJh6yAhocQyJLRfQsbSWzm2g3U,3550
|
69
69
|
psdi_data_conversion/static/javascript/data.js,sha256=davPYzCif_28FRpToQOYsoBgxpy6EMPWnBGQw0xKZrw,6111
|
70
|
-
psdi_data_conversion/static/javascript/format.js,sha256=
|
70
|
+
psdi_data_conversion/static/javascript/format.js,sha256=phFbU087hTJAvELR2nbLYZH9VQQDjmgBglknHSuF1ZI,20751
|
71
71
|
psdi_data_conversion/static/javascript/load_accessibility.js,sha256=jTLfmubEmko2bJ_MKWMkmYxUeBxotozc-0-ua69CYJo,3265
|
72
72
|
psdi_data_conversion/static/javascript/psdi-common.js,sha256=I0QqGQ7l_rA4KEfenQTfPc-uOXXp8sxMh_NHL3EkFm4,6231
|
73
|
-
psdi_data_conversion/static/javascript/report.js,sha256=
|
74
|
-
psdi_data_conversion/static/styles/format.css,sha256=
|
75
|
-
psdi_data_conversion/static/styles/psdi-common.css,sha256=
|
76
|
-
psdi_data_conversion/templates/index.htm,sha256=
|
73
|
+
psdi_data_conversion/static/javascript/report.js,sha256=BHH5UOhXJtB6J_xk_y6woquNKt5W9hCrQapxKtGG1eA,12470
|
74
|
+
psdi_data_conversion/static/styles/format.css,sha256=HKgKkepZtY0NCtKm4JlsuchDL_vymBQ0pRnmfVE8L30,3097
|
75
|
+
psdi_data_conversion/static/styles/psdi-common.css,sha256=bexxnnJHoq5WllRqrxmUz4GxveFWaidHXee-sA2sU6Q,17220
|
76
|
+
psdi_data_conversion/templates/index.htm,sha256=or75tQreQY6FI1M8bFDcDESdL3-mHLaIn80QC4933zI,5783
|
77
77
|
psdi_data_conversion/testing/__init__.py,sha256=Xku7drtLTYLLPsd403eC0LIEa_iohVifyeyAITy2w7U,135
|
78
78
|
psdi_data_conversion/testing/constants.py,sha256=TnUtsNmlFSzBrCWrCOp0TfKz33s8OxzHEj5LlsKJQEE,215
|
79
79
|
psdi_data_conversion/testing/conversion_callbacks.py,sha256=oSq93JdTz7KvLVirq_Ibaglg1ZxzuoKuWMv9DS2ykgs,18709
|
80
|
-
psdi_data_conversion/testing/conversion_test_specs.py,sha256=
|
81
|
-
psdi_data_conversion/testing/utils.py,sha256=
|
82
|
-
psdi_data_conversion-0.0.
|
83
|
-
psdi_data_conversion-0.0.
|
84
|
-
psdi_data_conversion-0.0.
|
85
|
-
psdi_data_conversion-0.0.
|
86
|
-
psdi_data_conversion-0.0.
|
80
|
+
psdi_data_conversion/testing/conversion_test_specs.py,sha256=EVP6Y6SsVLwR7JuSK4MOdZM-MGuJpMh6WxielKAn7Vo,18944
|
81
|
+
psdi_data_conversion/testing/utils.py,sha256=yU6f39rokvgAmaXr-v1LGuOvUk2GrnEb0SNAPjfc8AM,23365
|
82
|
+
psdi_data_conversion-0.0.36.dist-info/METADATA,sha256=B61tLrWmSCJjjtQ6AMug5uZB3Gvms2rdgM10lCjr3UU,38308
|
83
|
+
psdi_data_conversion-0.0.36.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
|
84
|
+
psdi_data_conversion-0.0.36.dist-info/entry_points.txt,sha256=o5y9mx-xX_koYtoAEB4acBG8lUkmhu8TlJhYD7axDS0,69
|
85
|
+
psdi_data_conversion-0.0.36.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
86
|
+
psdi_data_conversion-0.0.36.dist-info/RECORD,,
|
File without changes
|
{psdi_data_conversion-0.0.35.dist-info → psdi_data_conversion-0.0.36.dist-info}/entry_points.txt
RENAMED
File without changes
|
{psdi_data_conversion-0.0.35.dist-info → psdi_data_conversion-0.0.36.dist-info}/licenses/LICENSE
RENAMED
File without changes
|