Metadata-Version: 2.1
Name: rdkit-mux
Version: 2024.9.6
Summary: An unofficial renamed fork of RDKit library for multiple RDKit versions in single environment.
Home-page: https://github.com/rdkix/rdkix-pypi
Author: Jack Zhou
Author-email: jackzzs@outlook.com
License: BSD-3-Clause
Project-URL: RDKit, http://rdkit.org/
Project-URL: RDKit on Github, https://github.com/rdkit/rdkit
Project-URL: RDKix on Github, https://github.com/rdkix/rdkix
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: numpy
Requires-Dist: Pillow

# Rdkix: An Unofficial Renamed Fork of RDKit Library.

This is an unofficial fork of [the RDKit pypi package](https://pypi.org/project/rdkit/), renamed to RDKix for enabling multiple rdkit versions to coexist in the same python environment. [RDKit](https://github.com/rdkit/rdkit) is a collection of cheminformatics and machine-learning software written in C++ and Python. The renamed package, RDKix, can easily be installed using:

```sh
pip install rdkit-mux
```

And imported using:

```python
from rdkix import Chem
```

## Available Builds

| OS      | Arch    | Bit | Conditions                                          | 3.7 | 3.8 | 3.8 | 3.9 | 3.10 | 3.11 | 3.12 | 3.13 |
| ------- | ------- | --- | --------------------------------------------------- | --- | --- | --- | ---- | ---- | ---- | ---- | ---- |
| Linux   | intel   | 64  | glibc >= 2.17 (e.g., Ubuntu 16.04+, CentOS 6+, ...) | ✔️   | ✔️   | ✔️   | ✔️   | ✔️    | ✔️    | ✔️    | ✔️    |
| Linux   | aarch64 | 64  | glibc >= 2.17 (e.g., Raspberry Pi, ...)             | ✔️   | ✔️   | ✔️   | ✔️   | ✔️    | ✔️    | ✔️    | ✔️    |
| macOS   | intel   | 64  | >= macOS 10.13                                      | ✔️   | ✔️   | ✔️   | ✔️   | ✔️    | ✔️    | ✔️    | ✔️    |
| macOS   | armv8   | 64  | >= macOS 11, M1 hardware                            |    | ✔️   | ✔️   | ✔️   | ✔️    | ✔️    | ✔️    | ✔️    |
| Windows | intel   | 64  |                                                     | ✔️   | ✔️   | ✔️   | ✔️   | ✔️    | ✔️    | ✔️    | ✔️    |

## Documentation

- For offical `rdkit` documentation, see: [RDKit Documentation](https://www.rdkit.org/docs/index.html)
- For offical `rdkit-pypi` documentation, see: [RDKit PYPI Github README](https://github.com/kuelumbus/rdkit-pypi)
- To convert rdkix mol to rdkit mol, use `to_rdkit` method:

```python
from rdkix import Chem
mol = Chem.MolFromSmiles('NCc1ccccc1CO')
print(type(mol.to_rdkit()))
# <class 'rdkit.Chem.rdchem.Mol'>
```
