forked from mireklzicar/bitbirch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 683 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 683 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
from setuptools import setup, find_packages
VERSION = '0.2'
DESCRIPTION = 'BitBirch: efficient clustering of large molecular libraries.'
setup(
name='bitbirch',
version=VERSION,
description=DESCRIPTION,
url='https://github.com/mqcomplab/bitbirch.git', # Update with the actual URL if available
packages=find_packages(),
install_requires=[
'numpy<2,>=1.20',
'matplotlib',
'pandas',
'rdkit',
'scipy',
'seaborn',
'scikit-learn',
'plotly',
'iSIM @ git+https://github.com/mqcomplab/iSIM.git',
'useful_rdkit_utils @ git+https://github.com/PatWalters/useful_rdkit_utils.git'
]
)