File size: 430 Bytes
c4cb3a0
 
 
 
 
 
 
 
 
 
 
 
 
b84fc7f
c4cb3a0
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages

setup(
    name="metalatte",
    version="0.1",
    author="yinuo",
    author_email="[email protected]",
    description="MetaLATTE model for metal-binding protein analysis",
    packages=find_packages(),
    install_requires=[
        "torch==2.0.1+cu117",
        "numpy==1.22.4",
        "lightning==2.1.2",
        "transformers>=4.38.2",
    ],
    python_requires='>=3.8',
)