forked from JinyuanSun/DDGScan
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (24 loc) · 744 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·25 lines (24 loc) · 744 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="DDGScan",
version="0.1.0",
author="Jinyuan Sun",
author_email="jysun@im.ac.cn",
description="A powerful package for in silico mutation",
url="https://github.com/JinyuanSun/DDGScan",
packages=find_packages(),
scripts=['DDGScan', 'grape-fast.py', 'multimer_scan.py'],
install_requires=['pandas',
'numpy',
'joblib',
'seaborn',
'matplotlib',
'venn',
'logomaker',
'mdtraj',
'torch',
'scikit-learn',
'bio'
]
)