FusOn-pLM / setup.py
svincoff's picture
adding updated FusOn-pLM model
6968a40
raw
history blame contribute delete
351 Bytes
from setuptools import setup, find_packages
setup(
name="fuson_plm",
version="1.0",
packages=find_packages(), # Automatically find and include all packages
install_requires=[
# List your dependencies here
# 'numpy',
# 'torch',
],
author="Sophia Vincoff",
author_email="[email protected]",
)