File size: 374 Bytes
d766458 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | from setuptools import find_packages, setup
setup(
name="pxdbench",
version="0.1.2",
description="PXDesignBench: Benchmark Suite for De Novo Protein Binder Design",
author="ByteDance Inc.",
author_email="ai4s-bio@bytedance.com",
url="https://github.com/bytedance/PXDesignBench",
license="Apache-2.0",
python_requires=">=3.10",
)
|