-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d9ce0d6
commit 242b883
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
|
||
``` |