File size: 561 Bytes
f66a410
 
 
 
 
 
 
 
9ea7434
f66a410
 
 
 
 
 
27855d6
f66a410
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages 

setup(
    name='abaffinity',
    version='0.1.2', 
    description='Predict Affinity against SARS-CoV-2 HR2 peptide',
    author='Faisal B. Ashraf',
    packages=find_packages(),
    include_package_data=True,  # Ensures all necessary files are included
    install_requires=[
        'torch',              # PyTorch
        'numpy',              # For numerical operations
        'matplotlib',         # For plotting graphs
        'textwrap3',          # For wrapping text
    ],
    python_requires=">=3.7",
)