-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
46 lines (45 loc) · 1.09 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
setup(
name = 'rgn2-replica',
packages = find_packages(),
version = '0.0.1',
license='CreativeCommons4.0',
description = 'RGN2-REPLICA: Replicating a SoTA model for Protein Folding with no homologs (wip)',
author = 'Eric Alcaide',
author_email = '[email protected]',
url = 'https://github.com/hypnopump/rgn2-replica',
keywords = [
'artificial intelligence',
'bioinformatics',
'protein folding',
'protein structure prediction'
],
install_requires=[
'einops>=0.3',
'numpy',
'torch>=1.6',
'sidechainnet',
'proDy',
'tqdm',
'mp-nerf',
'en-transformer>=0.5.0',
'datasets>=1.10',
'transformers>=4.2',
'x-transformers>=0.16.1',
'pytorch-lightning>=1.4',
'wandb',
'fair-esm>=0.4.0'
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3.7',
],
)