Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanqing-wang authored Oct 31, 2022
1 parent d9ce0d6 commit 242b883
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,18 @@
# Espaloma Charge
Standalone charge assignment from Espaloma framework. https://doi.org/10.1039/D2SC02739A

## Installation

```
pip install espaloma_charge
```

## Example

```python
from rdkit import Chem; from espaloma_charge import charge
molecule = Chem.MolFromSmiles("N#N")
charge(molecule)
>>> array([0., 0.], dtype=float32)

```

0 comments on commit 242b883

Please sign in to comment.