|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
from setuptools import find_packages, setup |
|
|
|
with open("requirements.txt") as f: |
|
install_requires = f.read().splitlines() |
|
|
|
setup( |
|
name="protenix", |
|
python_requires=">=3.10", |
|
version="0.4.0", |
|
description="A trainable PyTorch reproduction of AlphaFold 3.", |
|
author="Bytedance Inc.", |
|
url="https://github.com/bytedance/Protenix", |
|
author_email="[email protected]", |
|
packages=find_packages( |
|
exclude=( |
|
"assets", |
|
"benchmark", |
|
"*.egg-info", |
|
) |
|
), |
|
include_package_data=True, |
|
package_data={ |
|
"protenix": ["model/layer_norm/kernel/*"], |
|
}, |
|
install_requires=install_requires, |
|
license="Apache 2.0 License", |
|
platforms="manylinux1", |
|
entry_points={ |
|
"console_scripts": [ |
|
"protenix = runner.batch_inference:protenix_cli", |
|
], |
|
}, |
|
) |
|
|