diff --git a/setup.py b/setup.py index 3776890..11c2ea4 100644 --- a/setup.py +++ b/setup.py @@ -3,20 +3,27 @@ from os import path setup( - name='uni', - version='0.1.0', - description='UNI', - url='https://github.com/mahmoodlab/UNI', - author='RJC,MYL,TD', - author_email='', - license='CC BY-NC 4.0', - packages=find_packages(exclude=['__dep__', 'assets']), - install_requires=["torch>=2.0.1", "torchvision", "timm==0.9.8", - "numpy", "pandas", "scikit-learn", "tqdm", - "transformers"], - - classifiers = [ - "Programming Language :: Python :: 3", - "License :: CC BY-NC 4.0", -] + name="uni", + version="0.1.0", + description="UNI", + url="https://github.com/mahmoodlab/UNI", + author="RJC,MYL,TD", + author_email="", + license="CC BY-NC 4.0", + packages=find_packages(exclude=["__dep__", "assets"]), + install_requires=[ + "torch>=2.0.1", + "torchvision", + "timm>=0.9.8", + "numpy", + "pandas", + "scikit-learn", + "tqdm", + "transformers", + "xformers>=0.0.18", + ], + classifiers=[ + "Programming Language :: Python :: 3", + "License :: CC BY-NC 4.0", + ], )