refactor(internbootcamp): standardize naming conventions and improve code structure

- Rename puzzle configuration files for consistency (e.g., InChI2logP_test.json)
- Standardize class names to PascalCase (e.g., InChI2MRBootCamp -> InChI2MRbootCamp)
- Improve code structure in various bootcamp modules for better readability and maintainability
- Update import statements and file references to reflect new naming conventions
- Enhance setup.py to include rdkit dependency
This commit is contained in:
chenyongkang 2025-06-16 20:49:17 +08:00
parent fdf5d19170
commit 324d068f8d
14 changed files with 120 additions and 59 deletions

View file

@ -32,11 +32,14 @@ from .bbeh_boolean_expressions.bbeh_boolean_expressions import Bbehbooleanexpres
from .ChemStructure2Property.InChI2logPBootCamp import InChI2logPbootcamp
from .ChemStructure2Property.InChI2MRBootCamp import InChI2MRBootCamp
from .ChemStructure2Property.SMILES2logPBootCamp import SMILES2logPBootCamp
from .ChemStructure2Property.SMILES2MRBootCamp import SMILES2MRBootCamp
from .ChemStructure2Property.InChI2MRBootCamp import InChI2MRbootCamp
from .ChemStructure2Property.SMILES2logPBootCamp import SMILES2logPbootcamp
from .ChemStructure2Property.SMILES2MRBootCamp import SMILES2MRbootCamp
from .earth_dew2humidity.earth_dew2humidity import Earthdew2humiditybootcamp
from .linearODE.linearODE import LinearODEbootcamp
from .kakurasu.kakurasu import Kakurasubootcamp
from .nonograms.nonograms import Nonogramsbootcamp
from .hitori.hitori import Hitoribootcamp