diff --git a/setup.py b/setup.py index 1b9d1db..7ebb376 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ name="protstruc", packages=find_packages(exclude=[]), include_package_data=True, - version="0.0.1", + version="0.0.2", license="MIT", description="Utility library for handling protein structures in Python.", author="Dohoon Lee", @@ -12,12 +12,22 @@ long_description_content_type="text/markdown", url="https://github.com/dohlee/protstruc", keywords=[ + "protein structure", + "protein design", + "protein structure prediction", + "antibody structure", + "antibody design", "bioinformatics", "computational biology", "artificial intelligence", ], install_requires=[ "numpy", + "scipy", + "scikit-learn", + "pandas", + "einops", + "torch", "biopandas>=0.4.1", ], classifiers=[