mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
9 lines
350 B
Python
9 lines
350 B
Python
from setuptools import find_packages, setup
|
|
|
|
VERSION = "1.0.0"
|
|
|
|
setup(name='freewillson', version=VERSION,
|
|
description='Free Wilson analysis using the RDKit and Scikit Learn', author='Brian Kelley',
|
|
author_email='fustigator@gmail.com', install_requires=['scikit-learn', 'tqdm'],
|
|
packages=find_packages(), py_modules=['freewilson'])
|