Metadata-Version: 2.1
Name: PyConSolv
Version: 0.9
Summary: A package for conformer generation of transition-metal-containing complexes
Project-URL: Homepage, https://github.com/PodewitzLab/PyConSolv
Project-URL: Bug Tracker, https://github.com/PodewitzLab/PyConSolv/issues
Author-email: "R. A. Talmazan" <radu.talmazan@tuwien.ac.at>
License-File: LICENSE
Keywords: AmberTools,Conformer,Explicit Solvent,Generator,MCPB,ORCA,Parametrization,PyConSolv,Simulation,Solvation,Transition metals
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Chemistry
Requires-Python: >=3.10
Requires-Dist: matplotlib>=3.5.3
Requires-Dist: numpy>=1.23.1
Requires-Dist: pandas>=1.4.3
Requires-Dist: rdkit>=2022.09.1
Description-Content-Type: text/markdown


# PyConSolv

A python based interface for generation of conformers of transition metal complexes in explicit solvent.
The interface bridges to the well known MCPB.py package available within ambertools. The input required 
consists of only a simple xyz file and all required steps for parametrization are performed automatically,
with minimal user intervention.



## Features
Utilizes freely available software, with high performance

18 predefined solvents and 6 counterions, with the ability to use any solvent or counterion

Automated molecule splitting for transition metal parametrization

Utilizes ORCA 5.0 for quantum mechanical optimizations/frequency calculations

Utilizes MultiWfn for the generation of the RESP charges

Automated equilibration of simulation box

Automated clustering


## Requirements

Python >=3.10

AmberTools 20+

ORCA 5.0+

MultiWfn 3.8+

## Usage

### Console:
pyconsolv [options]

see user manual for console options


### Jupyter Notebook

python

from PyConSolv import ConfGen

conf = ConfGen(path/to/input.xyz)

conf.run()



