mirror of
https://github.com/RosettaCommons/RFdiffusion.git
synced 2026-06-04 18:44:21 +08:00
12 lines
307 B
Python
12 lines
307 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='se3-transformer',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
version='1.0.0',
|
|
description='PyTorch + DGL implementation of SE(3)-Transformers',
|
|
author='Alexandre Milesi',
|
|
author_email='alexandrem@nvidia.com',
|
|
)
|