File size: 677 Bytes
d766458
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup, find_packages
setup(
    name='colabdesign',
    version='1.1.3',
    description='Making Protein Design accessible to all via Google Colab!',
    long_description="Making Protein Design accessible to all via Google Colab!",
    long_description_content_type='text/markdown',
    packages=find_packages(include=['colabdesign*']),
    install_requires=['py3Dmol','absl-py','biopython',
                      'chex','dm-haiku','dm-tree',
                      'immutabledict','jax','ml-collections',
                      'numpy','pandas','scipy','optax','joblib',
                      'matplotlib'],
    include_package_data=True
)