nerdd-module 0.3.26__tar.gz → 0.3.27__tar.gz
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.
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/PKG-INFO +2 -3
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module.egg-info/PKG-INFO +2 -3
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module.egg-info/requires.txt +1 -3
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/pyproject.toml +2 -7
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/LICENSE +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/README.md +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/__init__.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/cli.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/config/__init__.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/config/configuration.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/config/default_configuration.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/config/dict_configuration.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/config/merged_configuration.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/config/models.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/config/package_configuration.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/config/search_yaml_configuration.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/config/yaml_configuration.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/converters/__init__.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/converters/basic_type_converter.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/converters/converter.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/converters/converter_config.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/converters/mol_converter.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/converters/problem_list_converter.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/converters/representation_converter.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/converters/source_list_converter.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/converters/void_converter.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/__init__.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/depth_first_explorer.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/explorer.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/file_reader.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/gzip_reader.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/inchi_reader.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/list_reader.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/mol_reader.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/reader.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/reader_config.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/sdf_reader.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/smiles_reader.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/string_reader.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/tar_reader.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/input/zip_reader.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/model/__init__.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/model/assign_name_step.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/model/convert_representations_step.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/model/enforce_schema_step.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/model/model.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/model/read_input_step.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/model/simple_model.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/model/write_output_step.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/output/__init__.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/output/csv_writer.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/output/file_writer.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/output/iterator_writer.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/output/pandas_writer.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/output/record_list_writer.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/output/sdf_writer.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/output/writer.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/output/writer_config.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/polyfills/__init__.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/polyfills/block_logs.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/polyfills/files.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/polyfills/get_entry_points.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/polyfills/literal.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/polyfills/typed_dict.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/polyfills/types.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/polyfills/version.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/preprocessing/__init__.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/preprocessing/check_valid_smiles.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/preprocessing/chembl_structure_pipeline.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/preprocessing/filter_by_element.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/preprocessing/filter_by_weight.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/preprocessing/preprocessing_step.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/preprocessing/remove_stereochemistry.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/preprocessing/sanitize.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/problem.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/py.typed +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/steps/__init__.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/steps/map_step.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/steps/output_step.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/steps/step.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/tests/__init__.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/tests/checks.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/tests/files.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/tests/models/AtomicMassModel.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/tests/models/MolWeightModel.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/tests/models/__init__.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/tests/predictions.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/tests/preprocessing/DummyPreprocessingStep.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/tests/preprocessing/__init__.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/tests/representations.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/util/__init__.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/util/call_with_mappings.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/util/package.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/version.py +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module.egg-info/SOURCES.txt +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module.egg-info/dependency_links.txt +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module.egg-info/top_level.txt +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/setup.cfg +0 -0
- {nerdd_module-0.3.26 → nerdd_module-0.3.27}/tests/test_features.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: nerdd-module
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.27
|
|
4
4
|
Summary: Base package to create NERDD modules
|
|
5
5
|
Author-email: Steffen Hirte <steffen.hirte@univie.ac.at>
|
|
6
6
|
Maintainer-email: Steffen Hirte <steffen.hirte@univie.ac.at>
|
|
@@ -51,6 +51,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
51
51
|
Classifier: Programming Language :: Python :: 3.12
|
|
52
52
|
Description-Content-Type: text/markdown
|
|
53
53
|
License-File: LICENSE
|
|
54
|
+
Requires-Dist: rdkit>=2020.09.1
|
|
54
55
|
Requires-Dist: pandas>=1.2.1
|
|
55
56
|
Requires-Dist: pyyaml>=6.0
|
|
56
57
|
Requires-Dist: filetype~=1.2.0
|
|
@@ -70,8 +71,6 @@ Requires-Dist: types-PyYAML; extra == "dev"
|
|
|
70
71
|
Requires-Dist: types-decorator; extra == "dev"
|
|
71
72
|
Requires-Dist: types-setuptools; extra == "dev"
|
|
72
73
|
Requires-Dist: pre-commit>=2; extra == "dev"
|
|
73
|
-
Provides-Extra: rdkit
|
|
74
|
-
Requires-Dist: rdkit>=2022.3.3; extra == "rdkit"
|
|
75
74
|
Provides-Extra: csp
|
|
76
75
|
Requires-Dist: chembl_structure_pipeline>=1.0.0; extra == "csp"
|
|
77
76
|
Provides-Extra: test
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: nerdd-module
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.27
|
|
4
4
|
Summary: Base package to create NERDD modules
|
|
5
5
|
Author-email: Steffen Hirte <steffen.hirte@univie.ac.at>
|
|
6
6
|
Maintainer-email: Steffen Hirte <steffen.hirte@univie.ac.at>
|
|
@@ -51,6 +51,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
51
51
|
Classifier: Programming Language :: Python :: 3.12
|
|
52
52
|
Description-Content-Type: text/markdown
|
|
53
53
|
License-File: LICENSE
|
|
54
|
+
Requires-Dist: rdkit>=2020.09.1
|
|
54
55
|
Requires-Dist: pandas>=1.2.1
|
|
55
56
|
Requires-Dist: pyyaml>=6.0
|
|
56
57
|
Requires-Dist: filetype~=1.2.0
|
|
@@ -70,8 +71,6 @@ Requires-Dist: types-PyYAML; extra == "dev"
|
|
|
70
71
|
Requires-Dist: types-decorator; extra == "dev"
|
|
71
72
|
Requires-Dist: types-setuptools; extra == "dev"
|
|
72
73
|
Requires-Dist: pre-commit>=2; extra == "dev"
|
|
73
|
-
Provides-Extra: rdkit
|
|
74
|
-
Requires-Dist: rdkit>=2022.3.3; extra == "rdkit"
|
|
75
74
|
Provides-Extra: csp
|
|
76
75
|
Requires-Dist: chembl_structure_pipeline>=1.0.0; extra == "csp"
|
|
77
76
|
Provides-Extra: test
|
|
@@ -4,13 +4,14 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "nerdd-module"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.27"
|
|
8
8
|
description = "Base package to create NERDD modules"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { file = "LICENSE" }
|
|
11
11
|
authors = [{ name = "Steffen Hirte", email = "steffen.hirte@univie.ac.at" }]
|
|
12
12
|
maintainers = [{ name = "Steffen Hirte", email = "steffen.hirte@univie.ac.at" }]
|
|
13
13
|
dependencies = [
|
|
14
|
+
"rdkit>=2020.09.1",
|
|
14
15
|
"pandas>=1.2.1",
|
|
15
16
|
"pyyaml>=6.0",
|
|
16
17
|
"filetype~=1.2.0",
|
|
@@ -59,12 +60,6 @@ dev = [
|
|
|
59
60
|
"types-setuptools",
|
|
60
61
|
"pre-commit>=2",
|
|
61
62
|
]
|
|
62
|
-
rdkit = [
|
|
63
|
-
# Some old RDKit versions are not recognized by setuptools. For that reason,
|
|
64
|
-
# let the user install rdkit explicitly using an extra dependency.
|
|
65
|
-
# Note: rdkit 2022.3.3 is the oldest (working) version of rdkit on pypi.
|
|
66
|
-
"rdkit>=2022.3.3",
|
|
67
|
-
]
|
|
68
63
|
csp = [
|
|
69
64
|
# Note 1: Version 1.0.0 of chembl_structure_pipeline is not available on
|
|
70
65
|
# pypi, but maybe it was already installed in the current environment
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/config/search_yaml_configuration.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/converters/problem_list_converter.py
RENAMED
|
File without changes
|
{nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/converters/representation_converter.py
RENAMED
|
File without changes
|
{nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/converters/source_list_converter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/model/convert_representations_step.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/preprocessing/check_valid_smiles.py
RENAMED
|
File without changes
|
{nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/preprocessing/chembl_structure_pipeline.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/preprocessing/preprocessing_step.py
RENAMED
|
File without changes
|
{nerdd_module-0.3.26 → nerdd_module-0.3.27}/nerdd_module/preprocessing/remove_stereochemistry.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|