forked from sokrypton/ColabDesign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
15 lines (15 loc) · 662 Bytes
/
setup.py
File metadata and controls
15 lines (15 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup, find_packages
setup(
name='colabdesign',
version='1.1.2',
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
)