mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-06 22:39:55 +08:00
11 lines
289 B
Python
Executable File
11 lines
289 B
Python
Executable File
# Run this with:
|
|
# python setup.py install --install-lib=$RDBASE/Python
|
|
from RDBuild import *
|
|
from distutils.core import setup,Extension
|
|
|
|
|
|
setup(name="ML.Data.cQuantize",version="1.0",
|
|
ext_modules=[Extension("ML.Data.cQuantize",["cQuantize.cpp"],
|
|
extra_compile_args=compileArgs)])
|
|
|