We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c45a231 commit 38817f9Copy full SHA for 38817f9
geometry.py
@@ -194,6 +194,14 @@ def from_string(cls, name, form="smiles", strict_use_rdkit=False):
194
Atom("O", coords=[0.0, 0.0, 0.0], name="2"),
195
Atom("H", coords=[0.0, -0.7572, -0.4692], name="3"),
196
])
197
+ elif name == "ClC(Cl)Cl":
198
+ return cls([
199
+ Atom("Cl", coords=[-0.59020, 1.58610, -0.40730], name="1"),
200
+ Atom("C", coords=[ 0.00140, -0.00160, 0.12250], name="2"),
201
+ Atom("Cl", coords=[-1.05120, -1.30360, -0.49820], name="3"),
202
+ Atom("Cl", coords=[ 1.66160, -0.20470, -0.44580], name="4"),
203
+ Atom("H", coords=[-0.02170, -0.07610, 1.22880], name="5"),
204
+ ])
205
206
def get_cactus_sd(smiles):
207
if DEFAULT_CONFIG["DEFAULT"].getboolean("local_only"):
setup.py
@@ -52,7 +52,7 @@
52
# For a discussion on single-sourcing the version across setup.py and the
53
# project code, see
54
# https://packaging.python.org/en/latest/single_source_version.html
55
- version="1.0b19", # Required
+ version="1.0", # Required
56
# This is a one-line description or tagline of what your project does. This
57
# corresponds to the "Summary" metadata field:
58
# https://packaging.python.org/specifications/core-metadata/#summary
0 commit comments