forked from matteoferla/Fragmenstein
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (33 loc) · 1.61 KB
/
setup.py
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
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
from warnings import warn
from importlib import util
import sys
if sys.version_info.major != 3 or sys.version_info.minor < 6:
print(sys.version_info)
raise SystemError('Module written for Python 3.6+.')
# ---------- Non pip modules ------------------------------------------------------------------------------------------
if not util.find_spec('rdkit'):
warn('This 3.6+ script **requires** rdkit which cannot be pip installed.' +
' To install try either ' +
'conda install -c conda-forge rdkit or ' +
'sudo apt-get/brew install python3-rdkit or visit rdkit documentation.')
if not util.find_spec('pyrosetta'):
warn('The minimisation part of this code uses pyrosetta, which has to be downloaded from ' +
'the Rosetta software site due to licencing. Without it only the classes Monster and Rectifier will work')
if not util.find_spec('pymol2'):
warn('The module pymol2 is optionally required (conda or apt-get installable).')
setup(
name='Fragmenstein',
version='0.6.6',
packages=find_packages(),
install_requires=['numpy', 'rdkit-to-params', 'molecular-rectifier'],
extras_require={'jupyter': ['jupyter']},
url='https://github.com/matteoferla/Fragmenstein',
license='MIT',
author='Matteo Ferla',
author_email='[email protected]',
description='Scaffold hopping between bound compounds by stitching them together like a reanimated corpse',
entry_points={
'console_scripts': ['fragmenstein=fragmenstein.cli:main'],
}
)