forked from mqcomplab/iSIM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 826 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup, find_packages
VERSION = '15.0.0'
DESCRIPTION = 'Module to perform instant similarity (iSIM), which allows for comparison of multiple molecules at the same time, yielding the same value as the average pairwise comparisons of other methods.'
setup(
name='iSIM',
version=VERSION,
description=DESCRIPTION,
url='https://github.com/mqcomplab/iSIM',
packages=find_packages(),
include_package_data=True,
install_requires=[
'numpy',
'matplotlib',
'pandas',
'rdkit', #Not available on PyPI. User might need to install separately
'scipy',
'seaborn',
'scikit-learn'
],
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
zip_safe=False,
)