File size: 351 Bytes
6968a40 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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]",
)
|