mirror of
https://github.com/AngxiaoYue/ReQFlow.git
synced 2026-06-04 12:14:23 +08:00
12 lines
169 B
Python
12 lines
169 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="se3_flow_matching",
|
|
packages=[
|
|
'openfold'
|
|
],
|
|
package_dir={
|
|
'openfold': './openfold',
|
|
},
|
|
)
|