faisalashraf commited on
Commit
f66a410
·
verified ·
1 Parent(s): d223ff0

Update setup.py

Browse files
Files changed (1) hide show
  1. setup.py +17 -0
setup.py CHANGED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='abaffinity',
5
+ version='0.1.2',
6
+ description='Predict Affinity against SARS-CoV-2 HR2 peptide',
7
+ author='Faisal B. Ashraf',
8
+ packages=find_packages(),
9
+
10
+ install_requires=[
11
+ 'torch', # PyTorch
12
+ 'numpy', # For numerical operations
13
+ 'matplotlib', # For plotting graphs
14
+ 'textwrap3', # For wrapping text
15
+ ],
16
+ python_requires='>=3.6',
17
+ )