mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-07 22:44:25 +08:00
14 lines
243 B
Python
14 lines
243 B
Python
from rdkit import RDConfig
|
|
import os,sys
|
|
import unittest
|
|
from rdkit import Chem
|
|
from rdkit.Chem import rdMolHash
|
|
|
|
class TestCase(unittest.TestCase):
|
|
def setUp(self) :
|
|
pass
|
|
|
|
|
|
if __name__=="__main__":
|
|
unittest.main()
|