File size: 528 Bytes
ef28eb2
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from setuptools import find_packages, setup

setup(
    name="PDBench",
    packages=find_packages(include=["benchmark"]),
    version="0.1.0",
    description="PDBench: software package for evaluating fixed-backbone sequence design algorithms",
    author="Rokas Petrenas, Wells Wood Lab, University of Edinburgh",
    license="MIT",
    test_suite="test",
    install_requires=['wheel','ampal','wget','numpy==1.19.5','pandas==1.2.0','scikit-learn==0.24.1','pathlib==1.0.1','matplotlib==3.3.3','click==7.1.2','scipy==1.6.0']
)