forked from THGLab/IDPForge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 673 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
from os import path
if __name__ == "__main__":
setup(
name='IDPForge',
version='1.0.0',
description='A generative model for sampling IDPs and proteins with IDRs.',
long_description=None,
author='Oufan Zhang',
author_email='oz57@berkekey.edu',
packages=find_packages(include=['esm*', 'idpforge*']),
install_requires=[
'torch',
'pyyaml',
'tqdm'
],
license='MIT',
keywords=[
'Machine Learning', 'Protein Ensemble',
'Structure Determination', "Generative Model",
],
)