mirror of
https://github.com/baker-laboratory/RoseTTAFold-All-Atom.git
synced 2024-11-04 22:25:42 +00:00
11 lines
307 B
Python
11 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',
|
|
)
|