mirror of
https://github.com/samsledje/D-SCRIPT.git
synced 2026-06-04 15:04:24 +08:00
35 lines
738 B
Python
35 lines
738 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
import dscript
|
|
|
|
setup(
|
|
name="dscript",
|
|
version=dscript.__version__,
|
|
description="D-SCRIPT: protein-protein interaction prediction",
|
|
author="Samuel Sledzieski",
|
|
author_email="samsl@mit.edu",
|
|
url="http://dscript.csail.mit.edu",
|
|
license="GPLv3",
|
|
packages=find_packages(),
|
|
entry_points={
|
|
"console_scripts": [
|
|
"dscript = dscript.__main__:main",
|
|
],
|
|
},
|
|
include_package_data=True,
|
|
install_requires=[
|
|
"numpy",
|
|
"scipy",
|
|
"pandas",
|
|
"torch>=1.11",
|
|
"biopython",
|
|
"matplotlib",
|
|
"seaborn",
|
|
"tqdm",
|
|
"scikit-learn",
|
|
"h5py",
|
|
],
|
|
)
|